From 6ccbc45e057b3b048b163fc73012070396031232 Mon Sep 17 00:00:00 2001 From: David Paleino Date: Thu, 12 Apr 2012 22:02:06 +0200 Subject: [PATCH] Fix crash with wicd-curses --- curses/wicd-curses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curses/wicd-curses.py b/curses/wicd-curses.py index a436daa..71b5d3c 100755 --- a/curses/wicd-curses.py +++ b/curses/wicd-curses.py @@ -81,7 +81,7 @@ for i in language.keys(): language[i] = language[i].decode('utf8') def _(s): - orig_(s).decode('utf8') + return orig_(s).decode('utf8') ######################################## ##### SUPPORT CLASSES