From 5b355aa92b777b53873f85fe45840cabc128c8c1 Mon Sep 17 00:00:00 2001 From: Michiel Nauta Date: Thu, 29 Dec 2011 20:28:33 +0000 Subject: [PATCH] 5271: Gramps Crashes when trying to change tabs / views svn: r18659 --- src/gui/views/tags.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gui/views/tags.py b/src/gui/views/tags.py index 9c33644b5..d1fe60f1e 100644 --- a/src/gui/views/tags.py +++ b/src/gui/views/tags.py @@ -210,7 +210,8 @@ class Tags(DbGUIElement): tag_menu += '' tag_menu += '' for tag_name, handle in self.__tag_list: - tag_menu += '' % escape(tag_name) + tag_menu += '' % escape(tag_name, + {'"':'"'}) actions.append(('TAG_%s' % tag_name, None, tag_name, None, None, make_callback(self.tag_selected_rows, handle)))