Skip to content

Commit

Permalink
Handle dots in repository names.
Browse files Browse the repository at this point in the history
  • Loading branch information
Raynes committed Aug 28, 2012
1 parent 8347c8d commit ad0e2b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lazybot/plugins/github.clj
Expand Up @@ -87,7 +87,7 @@ specified in config.clj."
(defn extract-issues
"Extract issues out of a message."
[message]
(re-seq #"[\w-]+\/[\w-]+#\d+" message))
(re-seq #"[\w-]+\/[\w-\.]+#\d+" message))

(defn parse-issue
"Parse an issue message into its user, repo, and issue number parts."
Expand Down

0 comments on commit ad0e2b1

Please sign in to comment.