Browse Source

Bugfix: headers were missing in monthly reports.

pitchum 8 years ago
parent
commit
22f3ca8992
1 changed files with 1 additions and 0 deletions
  1. 1 0
      ccoop_resplit.py

+ 1 - 0
ccoop_resplit.py

@@ -95,6 +95,7 @@ class CsvStatementParser(object):
             fname = "releve_{0}.csv".format(curmonth)
             fname = "releve_{0}.csv".format(curmonth)
             outfile = open(os.path.join(outputdir, fname), 'w')
             outfile = open(os.path.join(outputdir, fname), 'w')
             writer = csv.DictWriter(outfile, self.fieldnames, delimiter=';')
             writer = csv.DictWriter(outfile, self.fieldnames, delimiter=';')
+            writer.writeheader()
             return outfile, writer
             return outfile, writer
         outfile, writer = __openfile__(curmonth)
         outfile, writer = __openfile__(curmonth)
         writer = csv.DictWriter(outfile, self.fieldnames, delimiter=';')
         writer = csv.DictWriter(outfile, self.fieldnames, delimiter=';')