From 545902be7d625f29d00eceb1707afa36af20d137 Mon Sep 17 00:00:00 2001 From: "louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13" Date: Wed, 10 Nov 2010 21:15:08 +0000 Subject: ConversationTab interface --- src/contact.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/contact.py') diff --git a/src/contact.py b/src/contact.py index 35a4a4a8..1eb41f72 100644 --- a/src/contact.py +++ b/src/contact.py @@ -14,12 +14,12 @@ # You should have received a copy of the GNU General Public License # along with Poezio. If not, see . - """ Defines the Resource and Contact classes """ - from sleekxmpp.xmlstream.stanzabase import JID +import logging +log = logging.getLogger(__name__) class Resource(object): """ @@ -54,7 +54,7 @@ class Resource(object): def get_status(self): return self._status - def set__status(self, s): + def set_status(self, s): self._status = s class Contact(object): -- cgit v1.2.3