add missing function. Fixes #5585

This commit is contained in:
Yann Leboulanger 2010-01-29 19:47:52 +01:00
parent 7035a5cb24
commit 841e3401d3
1 changed files with 3 additions and 0 deletions

View File

@ -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