From 30d00085771bdf2e989678b8d621402bff431583 Mon Sep 17 00:00:00 2001 From: Thomas Heller Date: Tue, 17 Aug 2004 10:15:07 +0000 Subject: [PATCH] The get_installer_filename() method forgot to return the name it calculates. Spotted by Cort Danger Stratton. --- Lib/distutils/command/bdist_wininst.py | 1 + 1 file changed, 1 insertion(+) 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): -- 2.50.1