[Python-checkins] python/dist/src/Lib/distutils/command bdist_wininst.py, 1.57, 1.58

loewis at users.sourceforge.net loewis at users.sourceforge.net
Tue Mar 22 23:23:31 CET 2005


Update of /cvsroot/python/python/dist/src/Lib/distutils/command
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21928

Modified Files:
	bdist_wininst.py 
Log Message:
Fix registration of output file.


Index: bdist_wininst.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/bdist_wininst.py,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -d -r1.57 -r1.58
--- bdist_wininst.py	21 Mar 2005 20:56:31 -0000	1.57
+++ bdist_wininst.py	22 Mar 2005 22:23:29 -0000	1.58
@@ -163,7 +163,7 @@
         # 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)



More information about the Python-checkins mailing list