From cd18ec2abf575c720716a2a3de6c3f9fe38b477b Mon Sep 17 00:00:00 2001 From: Philip Eisenlohr Date: Wed, 29 Jan 2014 21:03:56 +0000 Subject: [PATCH] removed unneccesary table.data_rewind, which breaks command piping --- processing/post/showTable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()