[pypy-commit] pypy py3.5: fix target_name

mattip pypy.commits at gmail.com
Fri Dec 29 09:16:39 EST 2017


Author: Matti Picus <matti.picus at gmail.com>
Branch: py3.5
Changeset: r93599:3e7cb4758b05
Date: 2017-12-29 16:15 +0200
http://bitbucket.org/pypy/pypy/changeset/3e7cb4758b05/

Log:	fix target_name

diff --git a/testrunner/get_info.py b/testrunner/get_info.py
--- a/testrunner/get_info.py
+++ b/testrunner/get_info.py
@@ -9,7 +9,7 @@
 
 BASE_DIR = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
 if sys.platform.startswith('win'):
-    TARGET_NAME = r'Scripts\\pypy3-c.exe'
+    TARGET_NAME = r'pypy3-c.exe'
     TARGET_DIR = 'Scripts'
 else:
     TARGET_NAME = 'pypy3-c'


More information about the pypy-commit mailing list