fix using generator.next() to next(generator)
This commit is contained in:
parent
fd0ff877a3
commit
37be46d474
1 changed files with 1 additions and 1 deletions
|
@ -1130,7 +1130,7 @@ _('This service does not contain any items to browse.'))
|
||||||
#stop idle_add()
|
#stop idle_add()
|
||||||
yield False
|
yield False
|
||||||
loader = fill_partial_rows(items)
|
loader = fill_partial_rows(items)
|
||||||
gobject.idle_add(loader.next)
|
GLib.idle_add(next, loader)
|
||||||
|
|
||||||
def _agent_info(self, jid, node, identities, features, data):
|
def _agent_info(self, jid, node, identities, features, data):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Add table
Reference in a new issue