Kaydet (Commit) 30d00085 authored tarafından Thomas Heller's avatar Thomas Heller

The get_installer_filename() method forgot to return the name it

calculates.  Spotted by Cort Danger Stratton.
üst 1f65b472
...@@ -283,6 +283,7 @@ class bdist_wininst (Command): ...@@ -283,6 +283,7 @@ class bdist_wininst (Command):
else: else:
installer_name = os.path.join(self.dist_dir, installer_name = os.path.join(self.dist_dir,
"%s.win32.exe" % fullname) "%s.win32.exe" % fullname)
return installer_name
# get_installer_filename() # get_installer_filename()
def get_exe_bytes (self): def get_exe_bytes (self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment