From 313fcd050144ef502b6b5aa4819afe2a96f0667b Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Tue, 28 Jul 2020 05:51:18 -0400 Subject: [PATCH] change defalt date format to ISO --- archivebox/core/settings.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/archivebox/core/settings.py b/archivebox/core/settings.py index a0da8b92..babcf35e 100644 --- a/archivebox/core/settings.py +++ b/archivebox/core/settings.py @@ -110,9 +110,12 @@ if IS_SHELL: LANGUAGE_CODE = 'en-us' TIME_ZONE = 'UTC' -USE_I18N = True -USE_L10N = True -USE_TZ = False +USE_I18N = False +USE_L10N = False +USE_TZ = True + +DATETIME_FORMAT = 'Y-m-d g:iA' +SHORT_DATETIME_FORMAT = 'Y-m-d h:iA' EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'