diff options
author | Steven Bethard <steven.bethard@gmail.com> | 2009-06-21 21:03:41 (GMT) |
---|---|---|
committer | Steven Bethard <steven.bethard@gmail.com> | 2009-06-21 21:03:41 (GMT) |
commit | 35fad2fc48881288ba163338f899005cd92a7899 (patch) | |
tree | 1c4b464a959103135692e50ed91a34bd472a7def /Lib | |
parent | 603fb6d66759afe8b5f65f2d456a43e73bb89233 (diff) | |
download | cpython-35fad2fc48881288ba163338f899005cd92a7899.zip cpython-35fad2fc48881288ba163338f899005cd92a7899.tar.gz cpython-35fad2fc48881288ba163338f899005cd92a7899.tar.bz2 |
Fix memory bug in bdist_msi. (Commit okayed in issue6319.)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/distutils/command/bdist_msi.py | 3 |
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): |