Nothing as usual.

This commit is contained in:
Stephan Erb 2007-11-27 20:33:02 +00:00
parent 391249f14f
commit f791def2f7
1 changed files with 4 additions and 4 deletions

View File

@ -42,9 +42,9 @@ class Contact:
# Capabilities; filled by caps.py/ConnectionCaps object # Capabilities; filled by caps.py/ConnectionCaps object
# every time it gets these from presence stanzas # every time it gets these from presence stanzas
self.caps_node=None self.caps_node = None
self.caps_ver=None self.caps_ver = None
self.caps_exts=None self.caps_exts = None
# please read jep-85 http://www.jabber.org/jeps/jep-0085.html # please read jep-85 http://www.jabber.org/jeps/jep-0085.html
# we keep track of jep85 support with the peer by three extra states: # we keep track of jep85 support with the peer by three extra states:
@ -372,7 +372,7 @@ class Contacts:
found = data found = data
break break
if found: if found:
self._metacontacts_tags[account][tag].remove(data) self._metacontacts_tags[account][tag].remove(found)
break break
common.gajim.connections[account].store_metacontacts( common.gajim.connections[account].store_metacontacts(
self._metacontacts_tags[account]) self._metacontacts_tags[account])