\S not \s in github issue ref regex

This commit is contained in:
jesopo 2019-05-16 14:25:18 +01:00
parent 7ce6af53f7
commit 54e8fc8029

View file

@ -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"