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: