explicitly state unbuffered ASCIIoutput

This commit is contained in:
Philip Eisenlohr 2014-03-28 18:15:37 +00:00
parent bd87e60e19
commit 16743f8631
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ for file in files:
'_row_': 0, '_row_': 0,
} }
table = damask.ASCIItable(file['input'],file['output'],False) # make unbuffered ASCII_table table = damask.ASCIItable(file['input'],file['output'],buffered = False) # make unbuffered ASCII_table
table.head_read() # read ASCII header info table.head_read() # read ASCII header info
table.info_append(string.replace(scriptID,'\n','\\n') + \ table.info_append(string.replace(scriptID,'\n','\\n') + \
'\t' + ' '.join(sys.argv[1:])) '\t' + ' '.join(sys.argv[1:]))