mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-25 01:02:19 +00:00
Merge remote-tracking branch 'origin/development' into development
This commit is contained in:
commit
ad375bf752
2 changed files with 2 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
0.9.3-beta.0
|
||||
0.9.3-beta.1
|
|
@ -14,7 +14,7 @@ def sanitize(string, ignore_characters=None, default_characters={'-', ':', '(',
|
|||
|
||||
"""
|
||||
# only deal with strings
|
||||
if string is None:
|
||||
if not isinstance(string, str):
|
||||
return
|
||||
|
||||
ignore_characters = ignore_characters or set()
|
||||
|
|
Loading…
Reference in a new issue