From 841e3401d35fdc7e3077533754205c3510ad571e Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Fri, 29 Jan 2010 19:47:52 +0100 Subject: [PATCH] add missing function. Fixes #5585 --- src/common/account.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/common/account.py b/src/common/account.py index 4db660165..c8a4c4604 100644 --- a/src/common/account.py +++ b/src/common/account.py @@ -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