diff options
-rw-r--r-- | Lib/distutils/command/build_py.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/distutils/command/build_py.py b/Lib/distutils/command/build_py.py index 28aefa9..0bbe339 100644 --- a/Lib/distutils/command/build_py.py +++ b/Lib/distutils/command/build_py.py @@ -26,6 +26,9 @@ class BuildPy (Command): def set_final_options (self): self.set_undefined_options ('build', ('libdir', 'dir')) + # 'package' is an alias option in Distribution (hmmm, we + # really should change to "pull" options from Distribution + # rather than "pushing" them out to commands...) if self.package is None: self.package = '' |