diff --git a/processing/post/showTable.py b/processing/post/showTable.py index 95a7e70a9..a8c8429f5 100755 --- a/processing/post/showTable.py +++ b/processing/post/showTable.py @@ -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()