# HG changeset patch # User souliane # Date 1392730415 -3600 # Node ID 59d486726577f5bc6489376edb3a08ae21221d4a # Parent 519e7f79729bf8863e9014044aca0f02d789d284 core: fix mispelled argument diff -r 519e7f79729b -r 59d486726577 src/core/sat_main.py --- a/src/core/sat_main.py Mon Feb 17 19:23:13 2014 +0100 +++ b/src/core/sat_main.py Tue Feb 18 14:33:35 2014 +0100 @@ -607,7 +607,7 @@ self.profiles[profile].presence.unsubscribed(to_jid) def _addContact(self, to_jid_s, profile_key): - return self.addContact(jid.JID(to), profile_key) + return self.addContact(jid.JID(to_jid_s), profile_key) def addContact(self, to_jid, profile_key): """Add a contact in roster list"""