diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-01-03 06:29:53 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-01-03 06:29:53 (GMT) |
commit | 9ca9f5676cdc8925373f25f4d252670697294465 (patch) | |
tree | 9dee89579c824ce7930c66adca10fa9235c3ab90 /Tools/msi | |
parent | 17e9863586cd3c79b67ed79edcb37f1ee2380116 (diff) | |
download | cpython-9ca9f5676cdc8925373f25f4d252670697294465.zip cpython-9ca9f5676cdc8925373f25f4d252670697294465.tar.gz cpython-9ca9f5676cdc8925373f25f4d252670697294465.tar.bz2 |
Ignore .svn instead of CVS now.
Diffstat (limited to 'Tools/msi')
-rw-r--r-- | Tools/msi/msi.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 6dc8663..19e72dc 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -907,7 +907,7 @@ def add_files(db): pydirs = [(root,"Lib")] while pydirs: parent, dir = pydirs.pop() - if dir == "CVS" or dir.startswith("plat-"): + if dir == ".svn" or dir.startswith("plat-"): continue elif dir in ["lib-tk", "idlelib", "Icons"]: if not have_tcl: @@ -957,9 +957,9 @@ def add_files(db): lib.add_file("wininst-6.exe") lib.add_file("wininst-7.1.exe") if dir=="data" and parent.physical=="test" and parent.basedir.physical=="email": - # This should contain all non-CVS files listed in CVS + # This should contain all non-.svn files listed in subversion for f in os.listdir(lib.absolute): - if f.endswith(".txt") or f=="CVS":continue + if f.endswith(".txt") or f==".svn":continue if f.endswith(".au") or f.endswith(".gif"): lib.add_file(f) else: |