summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/stanza_pubsub.py
diff options
context:
space:
mode:
authorNathan Fritz <nathan@andyet.net>2010-04-19 01:03:27 -0700
committerNathan Fritz <nathan@andyet.net>2010-04-19 01:03:27 -0700
commit212660091f155255ee9f45cdfca7969d8313309c (patch)
treed796fe3a72f834f06fda39a4b5d784eea7e3ec5c /sleekxmpp/plugins/stanza_pubsub.py
parent35c157f9d8c9bb2f59d17ec68b771ffcffb7931d (diff)
downloadslixmpp-212660091f155255ee9f45cdfca7969d8313309c.tar.gz
slixmpp-212660091f155255ee9f45cdfca7969d8313309c.tar.bz2
slixmpp-212660091f155255ee9f45cdfca7969d8313309c.tar.xz
slixmpp-212660091f155255ee9f45cdfca7969d8313309c.zip
added pubsub tests and fixed match on iterator error
Diffstat (limited to 'sleekxmpp/plugins/stanza_pubsub.py')
-rw-r--r--sleekxmpp/plugins/stanza_pubsub.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/stanza_pubsub.py b/sleekxmpp/plugins/stanza_pubsub.py
index 1d8c86f2..d25c2b3a 100644
--- a/sleekxmpp/plugins/stanza_pubsub.py
+++ b/sleekxmpp/plugins/stanza_pubsub.py
@@ -2,6 +2,7 @@ from .. xmlstream.stanzabase import ElementBase, ET, JID
from .. stanza.iq import Iq
from .. basexmpp import basexmpp
from .. xmlstream.xmlstream import XMLStream
+import logging
from . import xep_0004
def stanzaPlugin(stanza, plugin):
@@ -283,7 +284,6 @@ class Configure(ElementBase):
self.xml.remove(config)
stanzaPlugin(Pubsub, Configure)
-stanzaPlugin(Create, Configure)
class DefaultConfig(ElementBase):
namespace = 'http://jabber.org/protocol/pubsub#owner'