summaryrefslogtreecommitdiff
path: root/scripts/internal
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/internal')
-rwxr-xr-xscripts/internal/winmake.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/internal/winmake.py b/scripts/internal/winmake.py
index b88149a1..69d4d972 100755
--- a/scripts/internal/winmake.py
+++ b/scripts/internal/winmake.py
@@ -60,7 +60,7 @@ def safe_print(text, file=sys.stdout, flush=False):
Works with Python 2 and 3.
"""
if not isinstance(text, basestring):
- return print(text, file=file, flush=flush)
+ return print(text, file=file)
try:
file.write(text)
except UnicodeEncodeError: