Flip Django localization back on

Plz don't explode...
This commit is contained in:
2020-05-27 18:28:01 -04:00
parent 258aa81778
commit 99255e0e93
2 changed files with 1 additions and 3 deletions

View File

@@ -202,7 +202,7 @@ FORMAT_MODULE_PATH = 'PyRIGS.formats'
USE_I18N = True
USE_L10N = False
USE_L10N = True
USE_TZ = True

View File

@@ -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: