summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Nichols <tmnichols@gmail.com>2010-07-14 15:40:27 -0400
committerTom Nichols <tmnichols@gmail.com>2010-07-14 15:40:27 -0400
commit494e3ef4494e65d4bb0aab579430df1b85524b07 (patch)
tree7aa5a3a0ab74f17d60a530b80567cb86e39344ea
parentbe5688007bfa8cdd8fffa38dc618becd7557d559 (diff)
downloadslixmpp-0.9-conn-fixes3.tar.gz
slixmpp-0.9-conn-fixes3.tar.bz2
slixmpp-0.9-conn-fixes3.tar.xz
slixmpp-0.9-conn-fixes3.zip
-rw-r--r--sleekxmpp/plugins/xep_0009.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0009.py b/sleekxmpp/plugins/xep_0009.py
index 42e4eea0..32ae1369 100644
--- a/sleekxmpp/plugins/xep_0009.py
+++ b/sleekxmpp/plugins/xep_0009.py
@@ -250,7 +250,7 @@ class xep_0009(base.base_plugin):
def makeIqMethodError(self,pto,pid,pmethod,params,condition):
iq = self.self.makeMethodCallQuery(pto,pmethod,params)
- iq.setValues({'id':pid,'type':'error'})
+ iq.setValues({'id':pid,'type':'error'})
iq.append(self.xmpp['xep_0086'].makeError(condition))
return iq