]> granicus.if.org Git - python/commitdiff
The get_installer_filename() method forgot to return the name it
authorThomas Heller <theller@ctypes.org>
Tue, 17 Aug 2004 10:15:07 +0000 (10:15 +0000)
committerThomas Heller <theller@ctypes.org>
Tue, 17 Aug 2004 10:15:07 +0000 (10:15 +0000)
calculates.  Spotted by Cort Danger Stratton.

Lib/distutils/command/bdist_wininst.py

index 20bd61389a39f05a8e3644b51d6d3a64254af91d..33e15561bb22a5cafa5e4bc299dcd58a2435339b 100644 (file)
@@ -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):