From cf5e8e4906a7ed36682657b52ad7dd9370b4ec1c Mon Sep 17 00:00:00 2001 From: InsertDisc <31751462+InsertDisc@users.noreply.github.com> Date: Sat, 17 Feb 2024 12:08:13 -0500 Subject: [PATCH] Update with missing Exception handling --- vars.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vars.py b/vars.py index 9379c45..d01493c 100644 --- a/vars.py +++ b/vars.py @@ -836,7 +836,9 @@ def setting(value): if timezone_source == 'default': timezone = 'America/New_York' entry = timezone - + except Exception as e: + print("Encountered an error while parsing timezone settings:") + print(f"{e}") elif use_local == False: print("Using default Plex Meta Manager timezone for TMDB Discover builder")