We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8892a6 commit eabe9e9Copy full SHA for eabe9e9
src/ralph/settings/base.py
@@ -205,7 +205,9 @@ def _gen():
205
LOCALE_PATHS = (os.path.join(BASE_DIR, "locale"),)
206
TIME_ZONE = "Europe/Warsaw"
207
USE_I18N = bool_from_env("USE_I18N", True)
208
-USE_L10N = bool_from_env("USE_L10N", True) # Django complains, but removing it breaks things
+USE_L10N = bool_from_env( # Django complains, but removing it breaks things
209
+ "USE_L10N", True
210
+)
211
USE_TZ = False
212
213
STATIC_URL = "/static/"
0 commit comments