Merge branch 'frost' into harry

master
kek7198 2021-12-30 10:27:34 -06:00
commit aa896d43fd
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class SubMention(SpanToken):
pattern = re.compile("(^|\s|\n)(r/|/r/)(\w{3,25})")
parse_inner = False
def __init__(self, match_obj):
self.target = (match_obj.group(2), match_obj.group(3))
self.target = (match_obj.group(1), match_obj.group(3))
class RedditorMention(SpanToken):