summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2005-03-22 22:23:29 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2005-03-22 22:23:29 (GMT)
commit24ff83d5f3f2afdfd22c1e5081ede2860a30ce0c (patch)
tree2a8efcdf39bd597aa17463bb29795f6a5ca6a41b /Lib/distutils
parentbe435bf3c8d8a4297ebc4490f44cdb3bac5128f6 (diff)
downloadcpython-24ff83d5f3f2afdfd22c1e5081ede2860a30ce0c.zip
cpython-24ff83d5f3f2afdfd22c1e5081ede2860a30ce0c.tar.gz
cpython-24ff83d5f3f2afdfd22c1e5081ede2860a30ce0c.tar.bz2
Fix registration of output file.
Diffstat (limited to 'Lib/distutils')
-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 a0335fe..5a83226 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)