summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2005-03-22 22:23:29 +0000
committerMartin v. Löwis <martin@v.loewis.de>2005-03-22 22:23:29 +0000
commit24ff83d5f3f2afdfd22c1e5081ede2860a30ce0c (patch)
tree2a8efcdf39bd597aa17463bb29795f6a5ca6a41b
parentbe435bf3c8d8a4297ebc4490f44cdb3bac5128f6 (diff)
downloadcpython-git-24ff83d5f3f2afdfd22c1e5081ede2860a30ce0c.tar.gz
Fix registration of output file.
-rw-r--r--Lib/distutils/command/bdist_wininst.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/bdist_wininst.py b/Lib/distutils/command/bdist_wininst.py
index a0335feec7..5a83226b78 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)