diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2000-12-20 00:48:12 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2000-12-20 00:48:12 (GMT) |
commit | 8fe2c12d497f00e0137c5948c404734ae0b4d9ef (patch) | |
tree | f6cf2665e2b56448bde8ca4f3dd3eaf2dc0ad7b0 /Lib/distutils/command | |
parent | f947ffe951ebf2c194a2d566c3b524d40e96251e (diff) | |
download | cpython-8fe2c12d497f00e0137c5948c404734ae0b4d9ef.zip cpython-8fe2c12d497f00e0137c5948c404734ae0b4d9ef.tar.gz cpython-8fe2c12d497f00e0137c5948c404734ae0b4d9ef.tar.bz2 |
Add forgotten initialization. Fixes bug #120994, "Traceback with
DISTUTILS_DEBUG set"
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r-- | Lib/distutils/command/install.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 6aee1b3..806da01 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/command/install.py @@ -146,6 +146,7 @@ class install (Command): self.install_data = None self.compile = None + self.no_compile = None self.optimize = None # These two are for putting non-packagized distributions into their |