diff options
| author | 2019-05-16 14:25:18 +0100 | |
|---|---|---|
| committer | 2019-05-16 14:25:18 +0100 | |
| commit | 54e8fc80296549797c2e2c82b61ffb802d50446a (patch) | |
| tree | 37fe667acdd1a6af524fdf9bc488cf7f76a87c71 /modules/github/__init__.py | |
| parent | _parse_pull and _parse_issue shouldn't have an `event` param anymore (diff) | |
| signature | ||
\S not \s in github issue ref regex
Diffstat (limited to 'modules/github/__init__.py')
| -rw-r--r-- | modules/github/__init__.py | 2 |
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" |
