]> git.pld-linux.org Git - packages/rpm-build-tools.git/commitdiff
- small fixes
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Fri, 3 Jul 2009 06:35:09 +0000 (06:35 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    check-unused-files.py -> 1.2

check-unused-files.py

index 8547264b368d25b3b788a7cf81f8381fd1588b8d..17edd93789457309bd0f37629fcefea160d2911f 100644 (file)
@@ -35,14 +35,14 @@ obsolete = []
 
 for file in os.listdir(dir):
     file = os.path.basename(file)
-    if file in [ '.', '..', 'CVS', spec ]:
+    if file in [ '.', '..', 'CVS', '.cvsignore', spec ]:
         continue
     if file not in files:
         print "Obsolete file: %s" % file
         obsolete.append(file)
 
 print
-print "cvs rm -f %s" % "".join(obsolete)
+print "cvs rm -f %s" % " ".join(obsolete)
 
 
 
This page took 0.103191 seconds and 4 git commands to generate.