From 35fad2fc48881288ba163338f899005cd92a7899 Mon Sep 17 00:00:00 2001 From: Steven Bethard Date: Sun, 21 Jun 2009 21:03:41 +0000 Subject: [PATCH] Fix memory bug in bdist_msi. (Commit okayed in issue6319.) --- Lib/distutils/command/bdist_msi.py | 3 +-- 1 file changed, 1 insertion(+), 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): -- 2.50.1