From dd05fc46743cbb9c766994c12211948091deef65 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Arkadiusz=20Mi=C5=9Bkiewicz?= Date: Sun, 5 Jul 2009 15:51:46 +0000 Subject: [PATCH] - ignore TODO file Changed files: check-unused-files.py -> 1.5 --- check-unused-files.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/check-unused-files.py b/check-unused-files.py index 4709040..2bde3dd 100644 --- a/check-unused-files.py +++ b/check-unused-files.py @@ -35,7 +35,8 @@ obsolete = [] for file in os.listdir(dir): file = os.path.basename(file) - if file in [ '.', '..', 'CVS', '.cvsignore', 'dropin', 'md5', 'adapter', 'builder', 'relup.sh', 'compile.sh', 'repackage.sh', os.path.basename(spec) ]: + if file in [ '.', '..', 'CVS', '.cvsignore', 'dropin', 'md5', 'adapter', 'builder', + 'relup.sh', 'compile.sh', 'repackage.sh', 'TODO', os.path.basename(spec) ]: continue if file not in files: print "Obsolete file: %s" % file -- 2.44.0