aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2019-08-10 22:01:00 +0300
committerMatti Picus <matti.picus@gmail.com>2019-08-10 22:01:00 +0300
commita5809a8bfeac8851cc38e746c52f349c6901e17a (patch)
treea829a1d000ada61fa619a3b10e0739fff83eb68a /testrunner
parentfix for latest virtualenv HEAD (diff)
downloadpypy-a5809a8bfeac8851cc38e746c52f349c6901e17a.tar.gz
pypy-a5809a8bfeac8851cc38e746c52f349c6901e17a.tar.bz2
pypy-a5809a8bfeac8851cc38e746c52f349c6901e17a.zip
typo (thanks Ronan)
Diffstat (limited to 'testrunner')
-rw-r--r--testrunner/get_info.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testrunner/get_info.py b/testrunner/get_info.py
index 8258a595f9..1e814ac7ef 100644
--- a/testrunner/get_info.py
+++ b/testrunner/get_info.py
@@ -9,11 +9,11 @@ import json
BASE_DIR = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
if sys.platform.startswith('win'):
- TARGET_NAME = r'pypy-c.exe'
+ TARGET_NAME = 'pypy-c.exe'
# PyPy uses bin as of PR https://github.com/pypa/virtualenv/pull/1400
TARGET_DIR = 'bin'
else:
- TARGET_NAME = 'pypy3-c'
+ TARGET_NAME = 'pypy-c'
TARGET_DIR = 'bin'
VENV_DIR = 'pypy-venv'