missing import
This commit is contained in:
parent
5c5594bb31
commit
6afd4791a1
|
@ -22,6 +22,8 @@
|
||||||
## GNU General Public License for more details.
|
## GNU General Public License for more details.
|
||||||
##
|
##
|
||||||
|
|
||||||
|
import common.gajim
|
||||||
|
|
||||||
class Contact:
|
class Contact:
|
||||||
'''Information concerning each contact'''
|
'''Information concerning each contact'''
|
||||||
def __init__(self, jid='', name='', groups=[], show='', status='', sub='',
|
def __init__(self, jid='', name='', groups=[], show='', status='', sub='',
|
||||||
|
@ -183,7 +185,7 @@ class Contacts:
|
||||||
if jid in self._contacts[account]:
|
if jid in self._contacts[account]:
|
||||||
return self._contacts[account][jid][0]
|
return self._contacts[account][jid][0]
|
||||||
else: # it's fake jid
|
else: # it's fake jid
|
||||||
room, nick = gajim.get_room_and_nick_from_fjid(jid)
|
room, nick = common.gajim.get_room_and_nick_from_fjid(jid)
|
||||||
if self._gc_contacts[account].has_key(room) and \
|
if self._gc_contacts[account].has_key(room) and \
|
||||||
nick in self._gc_contacts[account][room]:
|
nick in self._gc_contacts[account][room]:
|
||||||
return self._gc_contacts[account][room][nick]
|
return self._gc_contacts[account][room][nick]
|
||||||
|
|
Loading…
Reference in New Issue