Skip to content

Commit

Permalink
Fix incorrect f-string quote pairs
Browse files Browse the repository at this point in the history
  • Loading branch information
InsertDisc authored Feb 17, 2024
1 parent 3db6a3e commit 56f3dbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vars.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 56f3dbd

Please sign in to comment.