Commit 6cd0dbf7 authored by Jason R. Coombs's avatar Jason R. Coombs

better variable name

parent 8cbf0716
......@@ -11,13 +11,13 @@ src_root = None
from distutils.util import convert_path
d = {}
command_ns = {}
init_path = convert_path('setuptools/command/__init__.py')
init_file = open(init_path)
exec(init_file.read(), d)
exec(init_file.read(), command_ns)
init_file.close()
SETUP_COMMANDS = d['__all__']
SETUP_COMMANDS = command_ns['__all__']
import setuptools
from setuptools.command.build_py import build_py as _build_py
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment