"devtools/packaging/scripts/vscode:/vscode.git/clone" did not exist on "ba0a045e4ab1c239140a4ef73060509e883ca7a8"
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): ...@@ -99,8 +99,7 @@ class StateDataReporter(object):
raise RuntimeError("Cannot write .bz2 file because Python could not import bz2 library") raise RuntimeError("Cannot write .bz2 file because Python could not import bz2 library")
self._out = bz2.BZ2File(file, 'w', 0) self._out = bz2.BZ2File(file, 'w', 0)
else: else:
# 1 means Line buffering self._out = open(file, 'w')
self._out = open(file, 'w', 1)
else: else:
self._out = file self._out = file
self._step = step 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