From 61543b1afc4a7a6f259abb366c1048c76cd13d7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Araujo?= Date: Tue, 30 Aug 2011 22:13:21 +0200 Subject: [PATCH] Fix typo I introduced in f93acf8844ec --- Lib/packaging/command/build_ext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/packaging/command/build_ext.py b/Lib/packaging/command/build_ext.py index c16b116afdd..fa8d11f39c4 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: