fix var names

This commit is contained in:
Denis Fomin 2010-11-28 16:11:27 +03:00
parent fc0e9bee3e
commit 2fe47c045b
1 changed files with 2 additions and 2 deletions

View File

@ -1533,8 +1533,8 @@ class MetacontactsReceivedEvent(nec.NetworkIncomingEvent):
# http://www.xmpp.org/extensions/xep-0209.html
self.meta_list = {}
query = self.stanza.getTag('query')
storage = self.stanza.getTag('storage')
metas = self.stanza.getTags('meta')
storage = query.getTag('storage')
metas = storage.getTags('meta')
for meta in metas:
try:
jid = helpers.parse_jid(meta.getAttr('jid'))