handle case where ignore patterns not defined

This commit is contained in:
Alan Hamlett 2013-10-28 18:09:51 -07:00
parent d34432217f
commit a13e11d24d
1 changed files with 10 additions and 7 deletions

View File

@ -140,13 +140,16 @@ def parseArguments(argv):
def should_ignore(fileName, patterns):
for pattern in patterns:
try:
compiled = re.compile(pattern, re.IGNORECASE)
if compiled.search(fileName):
return pattern
except re.error as ex:
log.warning('Regex error (%s) for ignore pattern: %s' % (str(ex), pattern))
try:
for pattern in patterns:
try:
compiled = re.compile(pattern, re.IGNORECASE)
if compiled.search(fileName):
return pattern
except re.error as ex:
log.warning('Regex error (%s) for ignore pattern: %s' % (str(ex), pattern))
except TypeError:
pass
return False