raw regexp strings

This commit is contained in:
j 2024-09-02 13:36:55 +02:00
commit caae7d84bc
7 changed files with 8 additions and 8 deletions

View file

@ -61,7 +61,7 @@ def sort_title(title):
title = sort_string(title)
#title
title = re.sub('[\'!¿¡,\.;\-"\:\*\[\]]', '', title)
title = re.sub(r'[\'!¿¡,\.;\-"\:\*\[\]]', '', title)
return title.strip()
def get_positions(ids, pos, decode_id=False):