add missing function. Fixes #5585
This commit is contained in:
parent
7035a5cb24
commit
841e3401d3
|
@ -25,6 +25,9 @@ class Account(object):
|
|||
self.contacts = contacts
|
||||
self.gc_contacts = gc_contacts
|
||||
|
||||
def change_contact_jid(self, old_jid, new_jid):
|
||||
self.contacts.change_contact_jid(old_jid, new_jid)
|
||||
|
||||
def __repr__(self):
|
||||
return self.name
|
||||
|
||||
|
|
Loading…
Reference in New Issue