From 56f3dbd9ba8a7cd232c43c8cc015d1a9fa2326f5 Mon Sep 17 00:00:00 2001 From: InsertDisc <31751462+InsertDisc@users.noreply.github.com> Date: Sat, 17 Feb 2024 12:00:58 -0500 Subject: [PATCH] Fix incorrect f-string quote pairs --- vars.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vars.py b/vars.py index 45f95be..9379c45 100644 --- a/vars.py +++ b/vars.py @@ -828,7 +828,7 @@ def setting(value): timezone = pref['settings']['timezone']['locality'] print(f'Using user defined Timezone => "{timezone}"') except KeyError: - print(f'Timezone 'forced' locality missing or not found in settings.') + print(f"Timezone 'forced' locality missing or not found in settings.") print(f'Check configuration/YAML structure') print(f'Falling back to default...') timezone_source = 'default'