Fix bundled search for titles with ™ and ® in them

This commit is contained in:
Nichlas Severinsen 2021-11-27 23:39:49 +01:00
parent 88d1b48167
commit 928ff3128f
2 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View file

@ -3,6 +3,7 @@
*.gz *.gz
*.db *.db
*.zip *.zip
*.rar
PS3_GAME/ PS3_GAME/
PS3_UPDATE/ PS3_UPDATE/

View file

@ -189,7 +189,8 @@ def multiman_title(title):
replace = { replace = {
':': ' -', ':': ' -',
'/': '-', '/': '-',
'': ' -', '': '',
'®': '',
} }
for key, val in replace.items(): for key, val in replace.items():