removed unneccesary table.data_rewind, which breaks command piping

This commit is contained in:
Philip Eisenlohr 2014-01-29 21:03:56 +00:00
parent 521a9d2d81
commit cd18ec2abf
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ for file in files:
if options.head or options.info: file['output'].write('\n'.join(table.info)+'\n')
if options.head or options.labels: file['output'].write({True:'\n',False:'\t'}[options.col].join(table.labels)+'\n')
if options.data:
table.data_rewind()
# table.data_rewind()
while table.data_read(): table.data_write()
table.output_flush()