From: Thomas Heller Date: Tue, 17 Aug 2004 10:15:07 +0000 (+0000) Subject: The get_installer_filename() method forgot to return the name it X-Git-Tag: v2.4a3~220 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=30d00085771bdf2e989678b8d621402bff431583;p=python The get_installer_filename() method forgot to return the name it calculates. Spotted by Cort Danger Stratton. --- diff --git a/Lib/distutils/command/bdist_wininst.py b/Lib/distutils/command/bdist_wininst.py index 20bd61389a..33e15561bb 100644 --- a/Lib/distutils/command/bdist_wininst.py +++ b/Lib/distutils/command/bdist_wininst.py @@ -283,6 +283,7 @@ class bdist_wininst (Command): else: installer_name = os.path.join(self.dist_dir, "%s.win32.exe" % fullname) + return installer_name # get_installer_filename() def get_exe_bytes (self):