From 1e3a2642a08f423161f1752f8578249457f0217a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Fri, 10 Sep 2004 11:55:32 +0000 Subject: [PATCH] Generate the product code properly --- Tools/msi/msilib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/msi/msilib.py b/Tools/msi/msilib.py index 5f8ef28ab6b..61715fcd3b9 100644 --- a/Tools/msi/msilib.py +++ b/Tools/msi/msilib.py @@ -315,7 +315,7 @@ def init_database(name, schema, si.SetProperty(PID_TEMPLATE, "Intel64;1033") else: si.SetProperty(PID_TEMPLATE, "Intel;1033") - si.SetProperty(PID_REVNUMBER, ProductCode) # XXX should be package code + si.SetProperty(PID_REVNUMBER, gen_uuid()) si.SetProperty(PID_WORDCOUNT, 2) # long file names, compressed, original media si.SetProperty(PID_PAGECOUNT, 200) si.SetProperty(PID_APPNAME, "Python MSI Library")