Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6a73845

Browse files
committed
#11781: update windows build script to account for move of email tests
1 parent 9535105 commit 6a73845

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Tools/msi/msi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1057,14 +1057,14 @@ def add_files(db):
10571057
lib.add_file("turtle.cfg")
10581058
if dir=="pydoc_data":
10591059
lib.add_file("_pydoc.css")
1060-
if dir=="data" and parent.physical=="test" and parent.basedir.physical=="email":
1060+
if dir=="data" and parent.physical=="test_email":
10611061
# This should contain all non-.svn files listed in subversion
10621062
for f in os.listdir(lib.absolute):
10631063
if f.endswith(".txt") or f==".svn":continue
10641064
if f.endswith(".au") or f.endswith(".gif"):
10651065
lib.add_file(f)
10661066
else:
1067-
print("WARNING: New file %s in email/test/data" % f)
1067+
print("WARNING: New file %s in test/test_email/data" % f)
10681068
for f in os.listdir(lib.absolute):
10691069
if os.path.isdir(os.path.join(lib.absolute, f)):
10701070
pydirs.append((lib, f))

0 commit comments

Comments
 (0)