Skip to content

Commit dd5ae73

Browse files
author
sreeder
committed
fix issue with save dialog
1 parent 1f3d176 commit dd5ae73

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

odmtools/gui/wizSave.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,9 @@ def _init_data(self, series):
134134
index = 0
135135
for m, i in zip(meth, range(len(meth))):
136136
num_items = self.panel.lstMethods.GetItemCount()
137-
self.panel.lstMethods.InsertStringItem(num_items, str(m.description))
137+
print (m.description)
138+
#124
139+
self.panel.lstMethods.InsertStringItem(num_items, m.description)
138140
self.panel.lstMethods.SetStringItem(num_items, 1, str(m.link))
139141
self.panel.lstMethods.SetStringItem(num_items, 2, str(m.id))
140142

0 commit comments

Comments
 (0)