remove print statement

This commit is contained in:
Jeremy Carbaugh 2012-03-11 23:16:33 -07:00
parent d5b56b931b
commit 79976e3c78

View File

@ -108,7 +108,6 @@ class CSVEmitter(Emitter):
self._dictwriter = csv.DictWriter(csvfile, fieldnames)
# write header row
header_row = dict(zip(fieldnames, fieldnames))
print(header_row)
self._dictwriter.writerow(header_row)
def emit_record(self, record):