0001986: export view to CSV --> does not add .csv filetype ending to file

svn: r10407
This commit is contained in:
Raphael Ackermann 2008-03-28 07:36:17 +00:00
parent e21d552013
commit 7579825843

View File

@ -50,7 +50,7 @@ class CSVTab(TabbedDoc):
else:
self.filename = filename
self.f = open(filename, "wb")
self.f = open(self.filename, "wb")
self.writer = csv.writer(self.f)
def close(self):