[pypy-commit] pypy default: whoops

mattip pypy.commits at gmail.com
Sun Jan 20 12:11:39 EST 2019


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r95680:eb58462b4225
Date: 2019-01-20 19:09 +0200
http://bitbucket.org/pypy/pypy/changeset/eb58462b4225/

Log:	whoops

diff --git a/rpython/translator/platform/windows.py b/rpython/translator/platform/windows.py
--- a/rpython/translator/platform/windows.py
+++ b/rpython/translator/platform/windows.py
@@ -86,7 +86,7 @@
             else:
                 log.msg('Running "%s" succeeded' %(vcvars,))
         except Exception as e:
-            log.msg('Running "%s" failed: "%s"', (vcvars, str(e)))
+            log.msg('Running "%s" failed: "%s"' % (vcvars, str(e)))
             return None
 
         stdout = stdout.replace("\r\n", "\n")


More information about the pypy-commit mailing list