"platforms/opencl/vscode:/vscode.git/clone" did not exist on "84f5e008b7c912077529bdbafcf193d20961430b"
Commit 47b73dfd authored by Matthew Harrigan's avatar Matthew Harrigan
Browse files

Remove buffering per @swails

parent ea47b895
......@@ -99,8 +99,7 @@ class StateDataReporter(object):
raise RuntimeError("Cannot write .bz2 file because Python could not import bz2 library")
self._out = bz2.BZ2File(file, 'w', 0)
else:
# 1 means Line buffering
self._out = open(file, 'w', 1)
self._out = open(file, 'w')
else:
self._out = file
self._step = step
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment