[Python-checkins] r73500 - in python/branches/py3k: Lib/distutils/command/bdist_msi.py

steven.bethard python-checkins at python.org
Sun Jun 21 23:07:41 CEST 2009


Author: steven.bethard
Date: Sun Jun 21 23:07:41 2009
New Revision: 73500

Log:
Merged revisions 73499 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r73499 | steven.bethard | 2009-06-21 17:03:41 -0400 (Sun, 21 Jun 2009) | 1 line
  
  Fix memory bug in bdist_msi. (Commit okayed in issue6319.)
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Lib/distutils/command/bdist_msi.py

Modified: python/branches/py3k/Lib/distutils/command/bdist_msi.py
==============================================================================
--- python/branches/py3k/Lib/distutils/command/bdist_msi.py	(original)
+++ python/branches/py3k/Lib/distutils/command/bdist_msi.py	Sun Jun 21 23:07:41 2009
@@ -314,8 +314,7 @@
                             key = seen[afile]
                             add_data(self.db, "DuplicateFile",
                                 [(key + version, dir.component, key, None, dir.logical)])
-
-
+            db.Commit()
         cab.commit(db)
 
     def add_find_python(self):


More information about the Python-checkins mailing list