Skip to content

Commit

Permalink
Noticed that a user name was not being parsed properly.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert (Bobby) Evans committed Jul 17, 2014
1 parent 1ce42cc commit b9017ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev-tools/jira/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def jiratime(obj):
return None
return datetime.strptime(obj[0:19], "%Y-%m-%dT%H:%M:%S")

githubUser = re.compile("Git[Hh]ub user (\w+)")
githubUser = re.compile("Git[Hh]ub user ([\w-]+)")
githubPull = re.compile("https://github.com/[^/\s]+/[^/\s]+/pull/[0-9]+")
hasVote = re.compile("\s+([-+][01])\s*")
isDiff = re.compile("--- End diff --")
Expand Down

0 comments on commit b9017ea

Please sign in to comment.