From 4c023838c0459f77e8d528ce31b2f99ff96944fc Mon Sep 17 00:00:00 2001 From: Giampaolo Rodola Date: Tue, 2 May 2017 07:10:46 +0200 Subject: refactor copyload_shared_lib --- scripts/internal/winmake.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') 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: -- cgit v1.2.1