fix logic for #2680

This commit is contained in:
Yann Leboulanger 2006-11-19 23:58:14 +00:00
parent 483ccdf35a
commit 2ebf1309de
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ def _ReceivedRegInfo(con, resp, agent):
return
df=DataForm(typ='form')
for i in resp.getQueryPayload():
if isinstance(i, Iq):
if not isinstance(i, Node):
pass
elif i.getName()=='instructions':
df.addInstructions(i.getData())