diff options
author | Matti Picus <matti.picus@gmail.com> | 2019-08-18 10:27:01 +0300 |
---|---|---|
committer | Matti Picus <matti.picus@gmail.com> | 2019-08-18 10:27:01 +0300 |
commit | 4515b773d7b90fd5b021775c35a2197e929feb8d (patch) | |
tree | 44a6d66377e95f10240d8c88c4f040fb11f52cb4 /testrunner | |
parent | merge default into py3.6 (diff) | |
download | pypy-4515b773d7b90fd5b021775c35a2197e929feb8d.tar.gz pypy-4515b773d7b90fd5b021775c35a2197e929feb8d.tar.bz2 pypy-4515b773d7b90fd5b021775c35a2197e929feb8d.zip |
test, fix error message for CPython3 compatibility
Diffstat (limited to 'testrunner')
-rw-r--r-- | testrunner/get_info.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/testrunner/get_info.py b/testrunner/get_info.py index d55a1a5287..9951c0017e 100644 --- a/testrunner/get_info.py +++ b/testrunner/get_info.py @@ -13,7 +13,6 @@ if sys.platform.startswith('win'): # PyPy uses bin as of PR https://github.com/pypa/virtualenv/pull/1400 TARGET_DIR = 'bin' else: - TARGET_NAME = 'pypy-c' TARGET_NAME = 'pypy3-c' TARGET_DIR = 'bin' VENV_DIR = 'pypy-venv' |