From 6c060f24ec2e362d8f8a3ea62014d8fafc37febd Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Thu, 30 Mar 2023 00:34:17 -0400 Subject: [PATCH] Default timezone to one that respects DST --- vrobbler/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/settings.py b/vrobbler/settings.py index 7ec30bb..96bd5eb 100644 --- a/vrobbler/settings.py +++ b/vrobbler/settings.py @@ -235,7 +235,7 @@ AUTH_PASSWORD_VALIDATORS = [ LANGUAGE_CODE = "en-us" -TIME_ZONE = os.getenv("VROBBLER_TIME_ZONE", "EST") +TIME_ZONE = os.getenv("VROBBLER_TIME_ZONE", "America/New_York") USE_I18N = True