diff options
| author | Éric Araujo <merwok@netwok.org> | 2011-08-30 20:13:21 (GMT) |
|---|---|---|
| committer | Éric Araujo <merwok@netwok.org> | 2011-08-30 20:13:21 (GMT) |
| commit | 61543b1afc4a7a6f259abb366c1048c76cd13d7d (patch) | |
| tree | 79ac40869b733d74ac1341d5d02bc09be573ac2e /Lib/packaging/command/build_ext.py | |
| parent | d9d67a6b5c854c8528c08e4630f146fce31bb229 (diff) | |
| download | cpython-61543b1afc4a7a6f259abb366c1048c76cd13d7d.zip cpython-61543b1afc4a7a6f259abb366c1048c76cd13d7d.tar.gz cpython-61543b1afc4a7a6f259abb366c1048c76cd13d7d.tar.bz2 | |
Fix typo I introduced in f93acf8844ec
Diffstat (limited to 'Lib/packaging/command/build_ext.py')
| -rw-r--r-- | Lib/packaging/command/build_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/packaging/command/build_ext.py b/Lib/packaging/command/build_ext.py index c16b116..fa8d11f 100644 --- a/Lib/packaging/command/build_ext.py +++ b/Lib/packaging/command/build_ext.py @@ -650,7 +650,7 @@ class build_ext(Command): else: if sysconfig.get_config_var('Py_ENABLE_SHARED'): - template = 'python%d%d' + sys.abiflags + template = 'python%d.%d' + sys.abiflags pythonlib = template % sys.version_info[:2] return ext.libraries + [pythonlib] else: |
