diff options
author | R David Murray <rdmurray@bitdance.com> | 2011-06-18 15:45:59 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2011-06-18 15:45:59 (GMT) |
commit | 6a738450827ea77bf8645b14a304a928b7c4ff47 (patch) | |
tree | e3e383f0ae28aa95d0b51c2e12df68884d0bca3b /Tools/msi | |
parent | 953510560f5443f15f3a3d3099b102ad7764909a (diff) | |
download | cpython-6a738450827ea77bf8645b14a304a928b7c4ff47.zip cpython-6a738450827ea77bf8645b14a304a928b7c4ff47.tar.gz cpython-6a738450827ea77bf8645b14a304a928b7c4ff47.tar.bz2 |
#11781: update windows build script to account for move of email tests
Diffstat (limited to 'Tools/msi')
-rw-r--r-- | Tools/msi/msi.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 18638eb..de1a623 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -1057,14 +1057,14 @@ def add_files(db): lib.add_file("turtle.cfg") if dir=="pydoc_data": lib.add_file("_pydoc.css") - if dir=="data" and parent.physical=="test" and parent.basedir.physical=="email": + if dir=="data" and parent.physical=="test_email": # This should contain all non-.svn files listed in subversion for f in os.listdir(lib.absolute): if f.endswith(".txt") or f==".svn":continue if f.endswith(".au") or f.endswith(".gif"): lib.add_file(f) else: - print("WARNING: New file %s in email/test/data" % f) + print("WARNING: New file %s in test/test_email/data" % f) for f in os.listdir(lib.absolute): if os.path.isdir(os.path.join(lib.absolute, f)): pydirs.append((lib, f)) |