]> granicus.if.org Git - python/commitdiff
Merged revisions 73499 via svnmerge from
authorSteven Bethard <steven.bethard@gmail.com>
Sun, 21 Jun 2009 21:07:41 +0000 (21:07 +0000)
committerSteven Bethard <steven.bethard@gmail.com>
Sun, 21 Jun 2009 21:07:41 +0000 (21:07 +0000)
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.)
........

Lib/distutils/command/bdist_msi.py

index 2e5685f5c436a2f581a05d23a550da2b7e374621..c4be47b579e59e8aaaef8205fa7f75a29a595c61 100644 (file)
@@ -314,8 +314,7 @@ class bdist_msi(Command):
                             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):