The get_installer_filename() method forgot to return the name it

calculates.  Spotted by Cort Danger Stratton.
This commit is contained in:
Thomas Heller 2004-08-17 10:15:07 +00:00
parent 1f65b472c3
commit 30d0008577

View 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):