From cdd2e98bd07bf250244cfbc7ee9107936c91087f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C4=93teris=20Caune?= Date: Fri, 6 Nov 2020 18:51:30 +0200 Subject: [PATCH] Remove USE_I18N and USE_L10N from settings They have the default values and so are redundant. --- hc/settings.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/hc/settings.py b/hc/settings.py index 1a4557d1..0f037bfa 100644 --- a/hc/settings.py +++ b/hc/settings.py @@ -145,8 +145,6 @@ if os.getenv("DB") == "mysql": USE_TZ = True TIME_ZONE = "UTC" -USE_I18N = True -USE_L10N = False LOCALE_PATHS = (os.path.join(BASE_DIR, "locale"),) SITE_ROOT = os.getenv("SITE_ROOT", "http://localhost:8000")