Author: Ronan Lamy <ronan.l...@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
+
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to