From 73b1dbc5f777fa64356c11e125b82042624cef99 Mon Sep 17 00:00:00 2001 From: Nan Jia Date: Mon, 23 May 2011 15:11:01 +0000 Subject: [PATCH] corrected printing bug --- processing/post/postResults | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/processing/post/postResults b/processing/post/postResults index 0ea4f1cea..64e6163f9 100755 --- a/processing/post/postResults +++ b/processing/post/postResults @@ -925,8 +925,8 @@ for incCount,increment in enumerate(increments): file = open(outFilename,'w') fileOpen = True file.write('2\theader\n') - file.write('$Id$ '+\ - ' '.join(sys.argv[1:])) + '\n' + file.write('$Id$\t'+\ + ' '.join(sys.argv[1:]) + '\n') headerWritten = False file.flush()