summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2008-04-07 14:54:16 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2008-04-07 14:54:16 (GMT)
commite411f8955f18504e6f2d3fee0f97819049ddd642 (patch)
tree47423d182d8c5f988aa230499386d2a83387ffd8 /Tools
parent54d489a97f992a4ad25ce7de3e9f4a53dc2bbd0b (diff)
downloadcpython-e411f8955f18504e6f2d3fee0f97819049ddd642.zip
cpython-e411f8955f18504e6f2d3fee0f97819049ddd642.tar.gz
cpython-e411f8955f18504e6f2d3fee0f97819049ddd642.tar.bz2
Make private_crt feature object a global variable.
Diffstat (limited to 'Tools')
-rw-r--r--Tools/msi/msi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py
index 7414564..e41bf00 100644
--- a/Tools/msi/msi.py
+++ b/Tools/msi/msi.py
@@ -794,7 +794,7 @@ def add_features(db):
# (i.e. additional Python libraries) need to follow the parent feature.
# Features that have no advertisement trigger (e.g. the test suite)
# must not support advertisement
- global default_feature, tcltk, htmlfiles, tools, testsuite, ext_feature
+ global default_feature, tcltk, htmlfiles, tools, testsuite, ext_feature, private_crt
default_feature = Feature(db, "DefaultFeature", "Python",
"Python Interpreter and Libraries",
1, directory = "TARGETDIR")