summaryrefslogtreecommitdiff
path: root/lib/py-compile
diff options
context:
space:
mode:
Diffstat (limited to 'lib/py-compile')
-rwxr-xr-xlib/py-compile6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/py-compile b/lib/py-compile
index 734bd6a3c..6295b2dac 100755
--- a/lib/py-compile
+++ b/lib/py-compile
@@ -1,7 +1,7 @@
#!/bin/sh
# py-compile - Compile a Python program
-scriptversion=2022-02-06.06; # UTC
+scriptversion=2022-02-06.07; # UTC
# Copyright (C) 2000-2022 Free Software Foundation, Inc.
@@ -141,7 +141,7 @@ for file in sys.argv[1:]:
if not os.path.exists(filepath) or not (len(filepath) >= 3
and filepath[-3:] == '.py'):
continue
- sys.stdout.write(file)
+ sys.stdout.write(file + ' ')
sys.stdout.flush()
if hasattr(sys.implementation, 'cache_tag'):
py_compile.compile(filepath, importlib.util.cache_from_source(filepath), path)
@@ -163,7 +163,7 @@ for file in sys.argv[1:]:
if not os.path.exists(filepath) or not (len(filepath) >= 3
and filepath[-3:] == '.py'):
continue
- sys.stdout.write(file)
+ sys.stdout.write(file + ' ')
sys.stdout.flush()
if hasattr(sys.implementation, 'cache_tag'):
py_compile.compile(filepath, importlib.util.cache_from_source(filepath), path)