From a811607a23f9e2ab05c071b03d59f55951860b6c Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Thu, 3 Nov 2016 09:12:07 +0800 Subject: use consistent quotes --- setuptools/command/build_ext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setuptools/command/build_ext.py') diff --git a/setuptools/command/build_ext.py b/setuptools/command/build_ext.py index aae02b0a..66ed285e 100644 --- a/setuptools/command/build_ext.py +++ b/setuptools/command/build_ext.py @@ -109,7 +109,7 @@ class build_ext(_build_ext): and get_abi3_suffix() ) if use_abi3: - so_ext = get_config_var("EXT_SUFFIX") or get_config_var("SO") + so_ext = get_config_var('EXT_SUFFIX') or get_config_var('SO') filename = filename[:-len(so_ext)] filename = filename + get_abi3_suffix() if isinstance(ext, Library): -- cgit v1.2.3