Skip to content
Snippets Groups Projects
Commit 95001b1e authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

Get TIME_ZONE from TZ, do not get LANGUAGE_CODE

parent 11626f89
No related branches found
No related tags found
No related merge requests found
......@@ -57,8 +57,8 @@ DATABASES = {
}
# LOCALIZATION
TIME_ZONE = os.getenv("TIME_ZONE", default="Europe/Vienna")
LANGUAGE_CODE = os.getenv("LANGUAGE_CODE", default="de")
TIME_ZONE = os.getenv("TZ", default="Europe/Vienna")
LANGUAGE_CODE = "de"
USE_I18N = True
USE_L10N = True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment