From 36cc58a9f05473bb5633e9a2f1436d9b749b8160 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 10 Feb 2014 18:54:15 +0100 Subject: fix treating UTF-8 strings as ascii same issue as in mga#12047 for net_monitor... --- src/msec/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/msec/config.py') diff --git a/src/msec/config.py b/src/msec/config.py index a136439..c8e87f6 100755 --- a/src/msec/config.py +++ b/src/msec/config.py @@ -38,7 +38,7 @@ SECURITYLOG = '/var/log/msec.log' # localization try: - gettext.install('msec') + gettext.install('msec', unicode=1) except IOError: _ = str -- cgit v1.2.1