diff options
author | Rob Austein <sra@hactrn.net> | 2015-10-27 12:36:42 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2015-10-27 12:36:42 +0000 |
commit | 8e54c2cbc90f9d115d4d799430941661544e0e1c (patch) | |
tree | 8bfac731f06f499706141113197e1a93369d7189 | |
parent | 5e2f332808a680104d94afb5812e47cbc6dfcc1f (diff) |
Reenable vile MySQL "latin1" workaround for now.
svn path=/branches/tk705/; revision=6156
-rw-r--r-- | rpki/django_settings/common.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/rpki/django_settings/common.py b/rpki/django_settings/common.py index 3860d40b..13dcdcef 100644 --- a/rpki/django_settings/common.py +++ b/rpki/django_settings/common.py @@ -83,8 +83,7 @@ class DatabaseConfigurator(object): # understands how to fix this, tell me; for now, we force # MySQL to revert to the default behavior in MySQL 5.5. # - #OPTIONS = dict(charset = "latin1") - ) + OPTIONS = dict(charset = "latin1")) @property def sqlite3(self): |