From 22d6ecdd7229d471c27374523f21d2d37173db7f Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sat, 1 Mar 2014 15:26:11 -0500 Subject: Remove get_installer_filename (copied from some version of Python now required to be supplied). --- setuptools/command/bdist_wininst.py | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'setuptools/command/bdist_wininst.py') 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() -- cgit v1.2.1