Skip to content

Commit 6cd0dbf

Browse files
committed
better variable name
1 parent 8cbf071 commit 6cd0dbf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111

1212
from distutils.util import convert_path
1313

14-
d = {}
14+
command_ns = {}
1515
init_path = convert_path('setuptools/command/__init__.py')
1616
init_file = open(init_path)
17-
exec(init_file.read(), d)
17+
exec(init_file.read(), command_ns)
1818
init_file.close()
1919

20-
SETUP_COMMANDS = d['__all__']
20+
SETUP_COMMANDS = command_ns['__all__']
2121

2222
import setuptools
2323
from setuptools.command.build_py import build_py as _build_py

0 commit comments

Comments
 (0)