Skip to content

Commit b9e25e5

Browse files
committed
fixed file import in the db
1 parent 787904a commit b9e25e5

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

pysolo_db.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -184,14 +184,15 @@ def DeleteRows(self, tobeDel):
184184

185185
self.SetData(dl)
186186

187-
def AddRow(self, tag_name):
187+
def AddRow(self, content=None, tag_name=''):
188188
"""
189189
Add a new empty row. Will have the specified tag_name
190190
"""
191191
#Create the new row and add it to the table
192192
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])
195196

196197
def ChangeRow(self, row, content):
197198
"""
@@ -992,14 +993,14 @@ def OnImportFromCSV(self,event):
992993
dlg.Destroy()
993994

994995
##TODO: check the importing from csv##
995-
for row in csv.split('\n')[:-1]:
996+
for row in csv.split('\n')[:]:
996997
row_split = row.split(',')
997998
for i in range(len(row_split)):
998999
try:
9991000
row_split[i]=int(row_split[i])
10001001
except:
10011002
pass
1002-
self.DAMlist.append(row_split)
1003+
self.DAMlist.AddRow(row_split)
10031004

10041005
self.updateListing()
10051006
self.PopulateBrowser()

0 commit comments

Comments
 (0)