From 99255e0e9378d496bc588c53bfe464c1b3d213ad Mon Sep 17 00:00:00 2001 From: Arona Date: Wed, 27 May 2020 18:28:01 -0400 Subject: [PATCH] Flip Django localization back on Plz don't explode... --- PyRIGS/settings.py | 2 +- PyRIGS/tests/regions.py | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/PyRIGS/settings.py b/PyRIGS/settings.py index 6f15f6c3..8164b221 100644 --- a/PyRIGS/settings.py +++ b/PyRIGS/settings.py @@ -202,7 +202,7 @@ FORMAT_MODULE_PATH = 'PyRIGS.formats' USE_I18N = True -USE_L10N = False +USE_L10N = True USE_TZ = True diff --git a/PyRIGS/tests/regions.py b/PyRIGS/tests/regions.py index 03977d98..9fcb9f81 100644 --- a/PyRIGS/tests/regions.py +++ b/PyRIGS/tests/regions.py @@ -7,8 +7,6 @@ from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support.select import Select from selenium.webdriver.common.keys import Keys import datetime -import os - def parse_bool_from_string(string): # Used to convert from attribute strings to boolean values, written after I found this: