From 4061a1738a63fff523c97542e3fb38d8321da33e Mon Sep 17 00:00:00 2001 From: Michiel Nauta Date: Thu, 29 Dec 2011 20:29:19 +0000 Subject: [PATCH] 5271: Gramps Crashes when trying to change tabs / views svn: r18660 --- 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)))