summaryrefslogtreecommitdiffstats
path: root/Lib/packaging/tests/test_command_install_dist.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/packaging/tests/test_command_install_dist.py')
-rw-r--r--Lib/packaging/tests/test_command_install_dist.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/packaging/tests/test_command_install_dist.py b/Lib/packaging/tests/test_command_install_dist.py
index 61270af..8f90aff 100644
--- a/Lib/packaging/tests/test_command_install_dist.py
+++ b/Lib/packaging/tests/test_command_install_dist.py
@@ -18,9 +18,8 @@ _CONFIG_VARS = get_config_vars()
def _make_ext_name(modname):
- if os.name == 'nt':
- if sys.executable.endswith('_d.exe'):
- modname += '_d'
+ if os.name == 'nt' and sys.executable.endswith('_d.exe'):
+ modname += '_d'
return modname + get_config_var('SO')