* src/const.py.in: eliminate zipcmd
* src/docgen/OpenSpreadSheet.py: eliminate the need for ZIP, use python zipfile module instead * src/plugins/EventCmp.py (DisplayChart.on_save_clicked): fix rows, double lines no longer used * configure.in: add check for vfs bindings, eliminate the check for swig and zip * gramps.spec.in (Requires): Added gnome-python2-gnomevfs dependency svn: r2577
This commit is contained in:
@@ -333,11 +333,10 @@ class DisplayChart:
|
||||
spreadsheet.write_table_head(self.event_titles)
|
||||
|
||||
index = 0
|
||||
for (top,bottom) in self.row_data:
|
||||
for top in self.row_data:
|
||||
spreadsheet.set_row(index%2)
|
||||
index = index + 1
|
||||
spreadsheet.write_table_data(top)
|
||||
spreadsheet.write_table_data(bottom)
|
||||
|
||||
spreadsheet.finalize()
|
||||
Utils.destroy_passed_object(obj)
|
||||
|
||||
Reference in New Issue
Block a user