@@ -517,7 +517,7 @@ def PageBrowser(self, nb):
517
517
518
518
#add the listbox on the left side of the panel
519
519
self .BrowsingData .append (wx .ListBox (panel ,wx .ID_ANY ))
520
- self .BrowsingData [- 1 ].InsertItems ([],0 )
520
+ self .BrowsingData [- 1 ].InsertItems (['' ],0 )
521
521
self .BrowsingData [- 1 ].Bind (wx .EVT_LISTBOX , self .OnChangeDAMentrySelection )
522
522
523
523
#put everything in a sizer and return this panel
@@ -712,9 +712,9 @@ def OnAddRow(self, event):
712
712
713
713
#Get the Tagname that the new row will inherit
714
714
tag_name = self .GetTagName ()
715
- if tag_name == 'All' : tag_name = ''
715
+ if tag_name == 'All' : tag_name = None
716
716
717
- self .DAMlist .AddRow (tag_name )
717
+ self .DAMlist .AddRow (content = None , tag_name = tag_name )
718
718
719
719
720
720
self .resetTablesSize ()
@@ -1281,8 +1281,6 @@ def AddRecentFile(self):
1281
1281
SavePreferenceFile (userConfig , customUserConfig )
1282
1282
1283
1283
1284
-
1285
-
1286
1284
def updateTagList (self , selection = 0 ):
1287
1285
"""
1288
1286
Reads all tags present in the current DAMlist
@@ -1294,7 +1292,7 @@ def updateTagList(self, selection=0):
1294
1292
all_tags = []
1295
1293
dl = self .DAMlist .GetData ()
1296
1294
all_num = 'All (%s)' % len (dl )
1297
- for tag in zip (* dl )[13 ]:
1295
+ for tag in ( zip (* dl )[13 ]) :
1298
1296
all_tags = all_tags + str (tag ).split (';' )
1299
1297
1300
1298
set_tags = list (set (all_tags ))
0 commit comments