summaryrefslogtreecommitdiff
path: root/Lib/distutils/command
diff options
context:
space:
mode:
authorSteven Bethard <steven.bethard@gmail.com>2009-06-21 21:03:41 +0000
committerSteven Bethard <steven.bethard@gmail.com>2009-06-21 21:03:41 +0000
commite7f62edc5beab855b1ff924065bbcb247957e938 (patch)
tree87ab52d74460f4763a365dcb6e3d1e48cf27bffb /Lib/distutils/command
parentad7d35fc10f8d32909a09b913c8a741472771293 (diff)
downloadcpython-e7f62edc5beab855b1ff924065bbcb247957e938.tar.gz
Fix memory bug in bdist_msi. (Commit okayed in issue6319.)
Diffstat (limited to 'Lib/distutils/command')
-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 d69c4b690c..7a5ca807a6 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):