From: Martin v. Löwis Date: Tue, 3 Jan 2006 06:30:40 +0000 (+0000) Subject: Ignore .svn instead of CVS now. X-Git-Tag: v2.4.3c1~159 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5bf0a551bda9c2d967fcccf11b07706f64da67b0;p=thirdparty%2FPython%2Fcpython.git Ignore .svn instead of CVS now. --- diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index d020082fc630..f51622cd8ca6 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -906,7 +906,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: @@ -956,9 +956,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: