fix crash in lintChanges.py

This commit is contained in:
Nick Mathewson 2016-09-22 08:33:09 -04:00
parent f6d7b71719
commit b64c224362
1 changed files with 4 additions and 1 deletions

View File

@ -55,7 +55,10 @@ def lintfile(fname):
'(' not in m.group(2)):
warn("Missing subcategory on %s"%m.group(1))
isBug = ("bug" in m.group(1).lower() or "fix" in m.group(1).lower())
if m:
isBug = ("bug" in m.group(1).lower() or "fix" in m.group(1).lower())
else:
isBug = False
contents = " ".join(contents.split())