We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f3d176 commit dd5ae73Copy full SHA for dd5ae73
odmtools/gui/wizSave.py
@@ -134,7 +134,9 @@ def _init_data(self, series):
134
index = 0
135
for m, i in zip(meth, range(len(meth))):
136
num_items = self.panel.lstMethods.GetItemCount()
137
- self.panel.lstMethods.InsertStringItem(num_items, str(m.description))
+ print (m.description)
138
+ #124
139
+ self.panel.lstMethods.InsertStringItem(num_items, m.description)
140
self.panel.lstMethods.SetStringItem(num_items, 1, str(m.link))
141
self.panel.lstMethods.SetStringItem(num_items, 2, str(m.id))
142
0 commit comments