diff options
author | Steven Bethard <steven.bethard@gmail.com> | 2009-06-21 21:07:41 (GMT) |
---|---|---|
committer | Steven Bethard <steven.bethard@gmail.com> | 2009-06-21 21:07:41 (GMT) |
commit | ef83ab9db5bda91bd19224c28aa9267f398bb7bf (patch) | |
tree | f017d75db90d662bd1d1600ed06f4a1f6cd12ca7 | |
parent | 0f6eac2ad209157444e30f01dfd53f084332e3d8 (diff) | |
download | cpython-ef83ab9db5bda91bd19224c28aa9267f398bb7bf.zip cpython-ef83ab9db5bda91bd19224c28aa9267f398bb7bf.tar.gz cpython-ef83ab9db5bda91bd19224c28aa9267f398bb7bf.tar.bz2 |
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.)
........
-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 2e5685f..c4be47b 100644 --- a/Lib/distutils/command/bdist_msi.py +++ b/Lib/distutils/command/bdist_msi.py @@ -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): |