From 458ac1cdf001a46adb19e3d1dd1abfc0fc0baf90 Mon Sep 17 00:00:00 2001 From: Benny Malengier Date: Mon, 9 Jul 2012 21:58:30 +0000 Subject: [PATCH] GTK3 does not automatically convert type to str, do ourselves svn: r19963 --- src/plugins/gramplet/attributes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/gramplet/attributes.py b/src/plugins/gramplet/attributes.py index 55f43f058..14107ebdc 100644 --- a/src/plugins/gramplet/attributes.py +++ b/src/plugins/gramplet/attributes.py @@ -53,7 +53,7 @@ class Attributes(Gramplet): Display the attributes of an object. """ for attr in obj.get_attribute_list(): - self.model.add((attr.get_type(), attr.get_value())) + self.model.add((str(attr.get_type()), attr.get_value())) self.set_has_data(self.model.count > 0) def display_report(self, treeview):