@@ -184,14 +184,15 @@ def DeleteRows(self, tobeDel):
184
184
185
185
self .SetData (dl )
186
186
187
- def AddRow (self , tag_name ):
187
+ def AddRow (self , content = None , tag_name = '' ):
188
188
"""
189
189
Add a new empty row. Will have the specified tag_name
190
190
"""
191
191
#Create the new row and add it to the table
192
192
new_id = '%s' % ( len (self .table .data )+ 1 )
193
- new_row = [new_id , False ] + ['' ] * 11 + [tag_name ] + [False ]
194
- self .table .AddRow ([new_row ])
193
+ if content == None :
194
+ content = [new_id , False ] + ['' ] * 11 + [tag_name ] + [False ]
195
+ self .table .AddRow ([content ])
195
196
196
197
def ChangeRow (self , row , content ):
197
198
"""
@@ -992,14 +993,14 @@ def OnImportFromCSV(self,event):
992
993
dlg .Destroy ()
993
994
994
995
##TODO: check the importing from csv##
995
- for row in csv .split ('\n ' )[:- 1 ]:
996
+ for row in csv .split ('\n ' )[:]:
996
997
row_split = row .split (',' )
997
998
for i in range (len (row_split )):
998
999
try :
999
1000
row_split [i ]= int (row_split [i ])
1000
1001
except :
1001
1002
pass
1002
- self .DAMlist .append (row_split )
1003
+ self .DAMlist .AddRow (row_split )
1003
1004
1004
1005
self .updateListing ()
1005
1006
self .PopulateBrowser ()
0 commit comments