]> granicus.if.org Git - python/commitdiff
Ignore .svn instead of CVS now.
authorMartin v. Löwis <martin@v.loewis.de>
Tue, 3 Jan 2006 06:29:53 +0000 (06:29 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Tue, 3 Jan 2006 06:29:53 +0000 (06:29 +0000)
Tools/msi/msi.py

index 6dc866344f553c4f402ed7af6e7bd0ec75624f3a..19e72dce0f3b97c29039c3141e209062e91ad598 100644 (file)
@@ -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: