fix carp 500

remotes/1693176582716663532/tmp_refs/heads/watchparty
justcool393 2022-11-03 18:21:24 -05:00
parent 5235f592f0
commit bed478276d
1 changed files with 2 additions and 0 deletions

View File

@ -118,6 +118,8 @@ knowledgebase_page_regex = re.compile("[a-zA-Z0-9_\-]+", flags=re.A)
def sub_matcher(match:re.Match, upper=False, replace_with:Union[dict[str, str], dict[str, List[str]]]=SLURS):
group_num = 0 if len(match.groups()) == 0 else 1
match_str = match.group(group_num)
if group_num == 1:
match_str = match_str.replace('\\W', '')
if match_str is None: return ""
if match_str.startswith('<'):
return match.group(group_num)