From: Martin v. Löwis Date: Tue, 22 Mar 2005 22:23:29 +0000 (+0000) Subject: Fix registration of output file. X-Git-Tag: v2.5a0~1890 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=24ff83d5f3f2afdfd22c1e5081ede2860a30ce0c;p=thirdparty%2FPython%2Fcpython.git Fix registration of output file. --- diff --git a/Lib/distutils/command/bdist_wininst.py b/Lib/distutils/command/bdist_wininst.py index a0335feec7e7..5a83226b7897 100644 --- a/Lib/distutils/command/bdist_wininst.py +++ b/Lib/distutils/command/bdist_wininst.py @@ -163,7 +163,7 @@ class bdist_wininst (Command): # create an exe containing the zip-file self.create_exe(arcname, fullname, self.bitmap) self.distribution.dist_files.append(('bdist_wininst', - self.get_installer_filename())) + self.get_installer_filename(fullname))) # remove the zip-file again log.debug("removing temporary file '%s'", arcname) os.remove(arcname)