[pypy-commit] pypy win32-vcvars: typo

mattip pypy.commits at gmail.com
Wed Nov 29 03:22:37 EST 2017


Author: Matti Picus <matti.picus at gmail.com>
Branch: win32-vcvars
Changeset: r93207:5d23987c65b3
Date: 2017-11-29 10:25 +0200
http://bitbucket.org/pypy/pypy/changeset/5d23987c65b3/

Log:	typo

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
@@ -106,7 +106,7 @@
         vcvers.insert(0, vsver)
     errs = []
     for vsver in vcvers: 
-        env, errstr = _get_msvc_env(vsver, x64flag)
+        env = _get_msvc_env(vsver, x64flag)
         if env is not None:
             return env
     log.error("Could not find a Microsoft Compiler")


More information about the pypy-commit mailing list