summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Bethard <steven.bethard@gmail.com>2009-06-21 21:03:41 (GMT)
committerSteven Bethard <steven.bethard@gmail.com>2009-06-21 21:03:41 (GMT)
commit35fad2fc48881288ba163338f899005cd92a7899 (patch)
tree1c4b464a959103135692e50ed91a34bd472a7def
parent603fb6d66759afe8b5f65f2d456a43e73bb89233 (diff)
downloadcpython-35fad2fc48881288ba163338f899005cd92a7899.zip
cpython-35fad2fc48881288ba163338f899005cd92a7899.tar.gz
cpython-35fad2fc48881288ba163338f899005cd92a7899.tar.bz2
Fix memory bug in bdist_msi. (Commit okayed in issue6319.)
-rw-r--r--Lib/distutils/command/bdist_msi.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/distutils/command/bdist_msi.py b/Lib/distutils/command/bdist_msi.py
index d69c4b6..7a5ca80 100644
--- a/Lib/distutils/command/bdist_msi.py
+++ b/Lib/distutils/command/bdist_msi.py
@@ -315,8 +315,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):