Explorar el Código

Default timezone to one that respects DST

Colin Powell hace 2 años
padre
commit
6c060f24ec
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      vrobbler/settings.py

+ 1 - 1
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