1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2024-12-26 01:27:07 +00:00

Merge remote-tracking branch 'origin/development' into development

This commit is contained in:
morpheus65535 2021-03-02 07:19:57 -05:00
commit ad375bf752
2 changed files with 2 additions and 2 deletions

View file

@ -1 +1 @@
0.9.3-beta.0 0.9.3-beta.1

View file

@ -14,7 +14,7 @@ def sanitize(string, ignore_characters=None, default_characters={'-', ':', '(',
""" """
# only deal with strings # only deal with strings
if string is None: if not isinstance(string, str):
return return
ignore_characters = ignore_characters or set() ignore_characters = ignore_characters or set()