summaryrefslogtreecommitdiff
path: root/wheel/bdist_wheel.py
diff options
context:
space:
mode:
Diffstat (limited to 'wheel/bdist_wheel.py')
-rw-r--r--wheel/bdist_wheel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wheel/bdist_wheel.py b/wheel/bdist_wheel.py
index 3631184..aa7c0c7 100644
--- a/wheel/bdist_wheel.py
+++ b/wheel/bdist_wheel.py
@@ -149,7 +149,7 @@ class bdist_wheel(Command):
# sys.pypy_version_info.minor)
abi_tag = sysconfig.get_config_vars().get('SOABI', 'none')
if abi_tag.startswith('cpython-'):
- abi_tag = 'cp' + abi_tag.split('-', 1)[-1]
+ abi_tag = 'cp' + abi_tag.split('-')[1]
tag = (impl_name + impl_ver, abi_tag, plat_name)
# XXX switch to this alternate implementation for non-pure: