fix *another* 500

remotes/1693176582716663532/tmp_refs/heads/watchparty
justcool393 2022-11-03 18:22:47 -05:00
parent bed478276d
commit bf448a557e
1 changed files with 1 additions and 1 deletions

View File

@ -118,9 +118,9 @@ 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 match_str is None: return ""
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)
else: