diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-03-01 15:26:11 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-03-01 15:26:11 -0500 |
commit | 22d6ecdd7229d471c27374523f21d2d37173db7f (patch) | |
tree | 9f84dd4ee551bc3e501d4a27558dbaf919ce1cf8 /setuptools/command/bdist_wininst.py | |
parent | 7b7c594c8ce8b6a3e44e4a387dbc5da5a3d9094e (diff) | |
download | external_python_setuptools-22d6ecdd7229d471c27374523f21d2d37173db7f.tar.gz external_python_setuptools-22d6ecdd7229d471c27374523f21d2d37173db7f.tar.bz2 external_python_setuptools-22d6ecdd7229d471c27374523f21d2d37173db7f.zip |
Remove get_installer_filename (copied from some version of Python now required to be supplied).
Diffstat (limited to 'setuptools/command/bdist_wininst.py')
-rwxr-xr-x | setuptools/command/bdist_wininst.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/setuptools/command/bdist_wininst.py b/setuptools/command/bdist_wininst.py index b5be1f34..b0eb4eaa 100755 --- a/setuptools/command/bdist_wininst.py +++ b/setuptools/command/bdist_wininst.py @@ -37,18 +37,3 @@ class bdist_wininst(_bdist_wininst): self._fix_upload_names() finally: self._is_running = False - - if not hasattr(_bdist_wininst, 'get_installer_filename'): - def get_installer_filename(self, fullname): - # Factored out to allow overriding in subclasses - if self.target_version: - # if we create an installer for a specific python version, - # it's better to include this in the name - installer_name = os.path.join(self.dist_dir, - "%s.win32-py%s.exe" % - (fullname, self.target_version)) - else: - installer_name = os.path.join(self.dist_dir, - "%s.win32.exe" % fullname) - return installer_name - # get_installer_filename() |