GNOME Bugzilla – Bug 719488
AttributeError: 'TreeStore' object has no attribute 'insert_with_values'
Last modified: 2013-12-01 23:39:28 UTC
Created attachment 263020 [details] reproducer an user originally reported this problem for virt-manager: https://bugzilla.redhat.com/show_bug.cgi?id=1024569 It seems that the problem is in Gtk.TreeStore.append method. I've attached a reproducer script and this is the traceback I get: Traceback (most recent call last):
+ Trace 232849
store.append(None, ["hello"])
return self._do_insert(parent, -1, row)
treeiter = self.insert_with_values(parent, position, columns, row)
This is the pygobject version I have installed: pygobject3.x86_64 3.11.1-1.fc21 @rawhide/rawhide pygobject3-base.x86_64 3.11.1-1.fc21 @rawhide/rawhide
This is caused by an out of date GObject-Introspection not picking up the new syntax for "rename-to" used in GTK+. Updating GI should fix the problem. *** This bug has been marked as a duplicate of bug 711341 ***
Changing to resolved as duplicate of needed version bump. *** This bug has been marked as a duplicate of bug 713044 ***