Skip to content

Commit

Permalink
Handle Verified lines more permissively.
Browse files Browse the repository at this point in the history
  • Loading branch information
tabatkins committed May 7, 2015
1 parent b30edb6 commit aadf752
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bikeshed/issuelist.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def printIssues(outfile, lines):
die("Issues must contain a line like 'Issue 1.'. Got:\n{0}", originaltext)

# Color coding
if re.search(r"\nVerified:\s+http", issue):
if re.search(r"\nVerified:\s*\S+", issue):
code = 'a'
elif re.search(r"\n(Closed|Open):\s+\S+", issue):
match = re.search(r"\n(Closed|Open):\s+(\S+)", issue)
Expand Down

0 comments on commit aadf752

Please sign in to comment.