aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2019-05-16 14:25:18 +0100
committerGravatar jesopo2019-05-16 14:25:18 +0100
commit54e8fc80296549797c2e2c82b61ffb802d50446a (patch)
tree37fe667acdd1a6af524fdf9bc488cf7f76a87c71
parent_parse_pull and _parse_issue shouldn't have an `event` param anymore (diff)
signature
\S not \s in github issue ref regex
-rw-r--r--modules/github/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/github/__init__.py b/modules/github/__init__.py
index c33935ac..fdd1c94d 100644
--- a/modules/github/__init__.py
+++ b/modules/github/__init__.py
@@ -8,7 +8,7 @@ COLOR_NEUTRAL = utils.consts.LIGHTGREY
COLOR_NEGATIVE = utils.consts.RED
COLOR_ID = utils.consts.PINK
-REGEX_ISSUE = re.compile("(\s+/\s+)?#\d+")
+REGEX_ISSUE = re.compile("(\S+/\S+)?#\d+")
FORM_ENCODED = "application/x-www-form-urlencoded"