summaryrefslogtreecommitdiff
path: root/sleekxmpp/xmlstream/stanzabase.py
diff options
context:
space:
mode:
authorNathan Fritz <fritzy@netflint.net>2009-12-22 10:05:53 +0000
committerNathan Fritz <fritzy@netflint.net>2009-12-22 10:05:53 +0000
commit805afa4bc1f44598d786fddc92c5129c62464227 (patch)
tree384291b5441f5cdbcd13b52cdab05062dc97a183 /sleekxmpp/xmlstream/stanzabase.py
parent07018c0afa7485b06424bf6787d242e7ee523d34 (diff)
downloadslixmpp-805afa4bc1f44598d786fddc92c5129c62464227.tar.gz
slixmpp-805afa4bc1f44598d786fddc92c5129c62464227.tar.bz2
slixmpp-805afa4bc1f44598d786fddc92c5129c62464227.tar.xz
slixmpp-805afa4bc1f44598d786fddc92c5129c62464227.zip
* fixed unhandled iqs
Diffstat (limited to 'sleekxmpp/xmlstream/stanzabase.py')
-rw-r--r--sleekxmpp/xmlstream/stanzabase.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sleekxmpp/xmlstream/stanzabase.py b/sleekxmpp/xmlstream/stanzabase.py
index 49ddc305..d941b8cb 100644
--- a/sleekxmpp/xmlstream/stanzabase.py
+++ b/sleekxmpp/xmlstream/stanzabase.py
@@ -214,8 +214,8 @@ class StanzaBase(ElementBase):
def clear(self):
for child in self.xml.getchildren():
self.xml.remove(child)
- for plugin in self.plugins:
- del self.plugins[plugin]
+ #for plugin in list(self.plugins.keys()):
+ # del self.plugins[plugin]
def reply(self):
self['from'], self['to'] = self['to'], self['from']