From 11e45f293f78448eee340fb540754889bf733a16 Mon Sep 17 00:00:00 2001 From: Benny Malengier Date: Thu, 9 May 2013 20:47:04 +0000 Subject: [PATCH] 6259: Harcoded 'raw' characters into listing files are not properly displayed into Addons dialog Gramps-addons listings has been fixed needing this change to have this working svn: r22228 --- gramps/gui/viewmanager.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gramps/gui/viewmanager.py b/gramps/gui/viewmanager.py index 1bbf08f62..a9d5dbccf 100644 --- a/gramps/gui/viewmanager.py +++ b/gramps/gui/viewmanager.py @@ -396,8 +396,7 @@ class ViewManager(CLIManager): lines = list(fp.readlines()) count = 0 for line in lines: - if sys.version_info[0] >= 3: - line = line.decode('utf-8').replace(": u'", ": '") + line = line.decode('utf-8') try: plugin_dict = safe_eval(line) if type(plugin_dict) != type({}):