diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2012-10-28 09:11:48 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2012-10-28 09:11:48 (GMT) |
commit | d94a502cb0dfdbfb6d337e51b0698e5fdcde20c9 (patch) | |
tree | 1fc734c8f369a31714121fe83578fe802e41d12b /Tools | |
parent | 3962d5e8926e71496d111946cad534860300b437 (diff) | |
parent | 65e2bef4f0dd1e39915be45e219d82bf25e7d5e4 (diff) | |
download | cpython-d94a502cb0dfdbfb6d337e51b0698e5fdcde20c9.zip cpython-d94a502cb0dfdbfb6d337e51b0698e5fdcde20c9.tar.gz cpython-d94a502cb0dfdbfb6d337e51b0698e5fdcde20c9.tar.bz2 |
Issue #16340: Merged fix from 3.3.
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 72b86bb..f9b477f 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -416,7 +416,7 @@ def add_ui(db): ("VerdanaRed9", "Verdana", 9, 255, 0), ]) - compileargs = r'-Wi "[TARGETDIR]Lib\compileall.py" -f -x "bad_coding|badsyntax|site-packages|py2_|lib2to3\\tests" "[TARGETDIR]Lib"' + compileargs = r'-Wi "[TARGETDIR]Lib\compileall.py" -f -x "bad_coding|badsyntax|site-packages|py2_|lib2to3\\tests|venv\\scripts" "[TARGETDIR]Lib"' lib2to3args = r'-c "import lib2to3.pygram, lib2to3.patcomp;lib2to3.patcomp.PatternCompiler()"' # See "CustomAction Table" add_data(db, "CustomAction", [ |