diff options
Diffstat (limited to 'Lib/distutils/command/install_ext.py')
-rw-r--r-- | Lib/distutils/command/install_ext.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/install_ext.py b/Lib/distutils/command/install_ext.py index 016a514..b046dfb 100644 --- a/Lib/distutils/command/install_ext.py +++ b/Lib/distutils/command/install_ext.py @@ -18,12 +18,12 @@ class install_ext (Command): ('build-dir=','b', "build directory (where to install from)"), ] - def set_default_options (self): + def initialize_options (self): # let the 'install' command dictate our installation directory self.install_dir = None self.build_dir = None - def set_final_options (self): + def finalize_options (self): self.set_undefined_options ('install', ('build_platlib', 'build_dir'), ('install_site_platlib', 'install_dir')) |