diff options
author | Brian Curtin <brian@python.org> | 2012-04-26 04:38:05 (GMT) |
---|---|---|
committer | Brian Curtin <brian@python.org> | 2012-04-26 04:38:05 (GMT) |
commit | 790a9b4c193a9f3323138a8c1c1d074a6b6289f0 (patch) | |
tree | 76e8958258e5d8eea71c5659119825f6547dc253 /Tools | |
parent | 9fa47ebafedaf1aef4480bc115b182a62efb79e1 (diff) | |
download | cpython-790a9b4c193a9f3323138a8c1c1d074a6b6289f0.zip cpython-790a9b4c193a9f3323138a8c1c1d074a6b6289f0.tar.gz cpython-790a9b4c193a9f3323138a8c1c1d074a6b6289f0.tar.bz2 |
Add a missing close paren
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/msi/msi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 77489dc..ce67978 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -859,7 +859,7 @@ def add_features(db): htmlfiles = Feature(db, "Documentation", "Documentation", "Python HTMLHelp File", 7, parent = default_feature) tools = Feature(db, "Tools", "Utility Scripts", - "Python utility scripts (Tools/", 9, + "Python utility scripts (Tools/)", 9, parent = default_feature, attributes=2) testsuite = Feature(db, "Testsuite", "Test suite", "Python test suite (Lib/test/)", 11, |