Fix failure to export bank 0 to CSV

This commit is contained in:
Dan Smith 2008-12-03 17:21:38 -08:00
parent 77e6a898f7
commit 805cd4e46f

View File

@ -189,7 +189,7 @@ class Memory:
self.mode,
self.tuning_step,
self.skip,
self.bank or "",
self.bank is not None and self.bank or "",
self.bank_index)
return string
@ -330,7 +330,7 @@ class DVMemory(Memory):
self.mode,
self.tuning_step,
self.skip,
self.bank or "",
self.bank is not None and self.bank or "",
self.bank_index,
self.dv_urcall,
self.dv_rpt1call,