timezone fix (reversed?)

This commit is contained in:
Justin 2023-08-31 22:03:08 +08:00 committed by GitHub
parent f47a18190c
commit c059825718
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 1 deletions

View File

@ -7284,7 +7284,10 @@ class StockTicker():
#TIMEZONE NOT WORKING?!?!?!!?!?!?!?!?!??
timezone = pytz.timezone(settings['timezone'])
if '+' in timezone:
timezone = timezone.replace('+', '-')
elif '-' in timezone:
timezone = timezone.replace('-', '+')
font = graphics.Font()
font.LoadFont("fonts/6x12.bdf") # Change this to the path of your desired font file
font2 = graphics.Font()
@ -7553,6 +7556,10 @@ class StockTicker():
# Create a canvas to draw on
canvas = self.double_buffer
timezone = pytz.timezone(settings['timezone'])
if '+' in timezone:
timezone = timezone.replace('+', '-')
elif '-' in timezone:
timezone = timezone.replace('-', '+')
# Set the font and text color
font = graphics.Font()
font.LoadFont("fonts/clR6x12.bdf")