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

theller at users.sourceforge.net theller at users.sourceforge.net
Tue Aug 17 12:15:53 CEST 2004


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

Modified Files:
	bdist_wininst.py 
Log Message:
The get_installer_filename() method forgot to return the name it
calculates.  Spotted by Cort Danger Stratton.


Index: bdist_wininst.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/bdist_wininst.py,v
retrieving revision 1.53
retrieving revision 1.54
diff -C2 -d -r1.53 -r1.54
*** bdist_wininst.py	23 Jul 2004 19:58:28 -0000	1.53
--- bdist_wininst.py	17 Aug 2004 10:15:07 -0000	1.54
***************
*** 284,287 ****
--- 284,288 ----
              installer_name = os.path.join(self.dist_dir,
                                            "%s.win32.exe" % fullname)
+         return installer_name
      # get_installer_filename()
  



More information about the Python-checkins mailing list