[pypy-commit] pypy py3.5: fix syntax error (oops!)

rlamy pypy.commits at gmail.com
Thu Jun 1 08:53:03 EDT 2017


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: py3.5
Changeset: r91480:002279b09536
Date: 2017-06-01 13:52 +0100
http://bitbucket.org/pypy/pypy/changeset/002279b09536/

Log:	fix syntax error (oops!)

diff --git a/pypy/interpreter/app_main.py b/pypy/interpreter/app_main.py
--- a/pypy/interpreter/app_main.py
+++ b/pypy/interpreter/app_main.py
@@ -831,7 +831,7 @@
     stdlib_path = sys.pypy_find_stdlib(executable)
     if stdlib_path is None:
         initstdio()
-        print(STDLIB_WARNING % (getattr(sys, 'prefix', '<missing>'), 
+        print(STDLIB_WARNING % (getattr(sys, 'prefix', '<missing>'),),
             file=sys.stderr)
     else:
         sys.path[:] = stdlib_path
@@ -954,3 +954,4 @@
         import os; os.environ.update(reset)
         assert old_argv is sys.argv
         assert old_path is sys.path
+


More information about the pypy-commit mailing list