From 2885ff4128daf4268f5a7e34e6d0428c10254d27 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Sun, 3 Jan 2016 16:14:44 +0100 Subject: [PATCH] fix printing help --- src/gajim.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gajim.py b/src/gajim.py index 34544849d..bbad6957a 100644 --- a/src/gajim.py +++ b/src/gajim.py @@ -175,7 +175,7 @@ def parseOpts(): _('Set configuration directory') + \ '\n -l, --loglevel ' + \ _('Configure logging system') + '\n' - print(out.encode(locale.getpreferredencoding())) + print(out) sys.exit() elif o in ('-q', '--quiet'): logging_helpers.set_quiet()