aboutsummaryrefslogtreecommitdiff
path: root/rpki
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2015-11-23 18:13:18 +0000
committerRob Austein <sra@hactrn.net>2015-11-23 18:13:18 +0000
commitaf9c7f0f35e2462a5f29526c16e38f9b222e154f (patch)
treec9e56ce0f283c17fd024b504d22d5b0dde540274 /rpki
parent39b600960d0b0e55c255b5521c52b3cd3e0c337a (diff)
Doh, rpkic is using Django, so we need the Django version of the MySQL
5.6 Latin1 kludge. svn path=/trunk/; revision=6189
Diffstat (limited to 'rpki')
-rw-r--r--rpki/rpkic.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/rpki/rpkic.py b/rpki/rpkic.py
index 8ce28b59..126ce828 100644
--- a/rpki/rpkic.py
+++ b/rpki/rpkic.py
@@ -144,7 +144,8 @@ class main(Cmd):
"PASSWORD" : cfg.get("sql-password", section = "irdbd"),
"HOST" : "",
"PORT" : "",
- "OPTIONS" : { "init_command": "SET storage_engine=INNODB" }}},
+ "OPTIONS" : { "init_command": "SET storage_engine=INNODB",
+ "charset" : "latin1" }}},
INSTALLED_APPS = ("rpki.irdb",),
MIDDLEWARE_CLASSES = (), # API change, feh
)