소스 검색

Test fix character escape

Penta 1 개월 전
부모
커밋
9a897b9949
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      myanimebot/utils.py

+ 2 - 1
myanimebot/utils.py

@@ -200,7 +200,8 @@ def filter_name(name : str) -> str:
         "☆": "\☆"
         }
 
-    return replace_all(name, dic)
+    # return replace_all(name, dic)
+    return name
 
 # Check if the show's name ends with a show type and truncate it
 def truncate_end_show(media_name : str):