From f1cd54c75ce52fc2a59a6ac178d74a66a42a1cfa Mon Sep 17 00:00:00 2001 From: Vitiko <59455966+vitiko98@users.noreply.github.com> Date: Tue, 2 Mar 2021 08:17:02 -0400 Subject: [PATCH 1/2] Fixed TypeError in subliminal_patch sanitize --- libs/subliminal_patch/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/subliminal_patch/utils.py b/libs/subliminal_patch/utils.py index e7b84a378..fb6bba5da 100644 --- a/libs/subliminal_patch/utils.py +++ b/libs/subliminal_patch/utils.py @@ -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() From 716201fa6b171a0585ab5a6ba9569af1dae3978d Mon Sep 17 00:00:00 2001 From: release-it Date: Tue, 2 Mar 2021 12:17:56 +0000 Subject: [PATCH 2/2] Release 0.9.3-beta.1 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index a29c60f1e..0423c5cc6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.9.3-beta.0 \ No newline at end of file +0.9.3-beta.1 \ No newline at end of file