diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-11-03 09:12:07 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-03 09:12:07 +0800 |
commit | a811607a23f9e2ab05c071b03d59f55951860b6c (patch) | |
tree | a60c6934caa79a10c38748e240df8edcc4867dfc /setuptools/command/build_ext.py | |
parent | 74da9afb4dae6ad548895da2169a4f2cd76617dd (diff) | |
download | python-setuptools-git-a811607a23f9e2ab05c071b03d59f55951860b6c.tar.gz |
use consistent quotes
Diffstat (limited to 'setuptools/command/build_ext.py')
-rw-r--r-- | setuptools/command/build_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |