diff options
author | Lance Stout <lancestout@gmail.com> | 2010-09-01 14:20:34 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2010-09-01 14:20:34 -0400 |
commit | aebd115ba2a8dfab7b345dfc121ec73b5dc7a5a1 (patch) | |
tree | 70f8b867a7a5a65f51a117bcf8ae9b5bc9dbd529 /sleekxmpp/xmlstream/stanzabase.py | |
parent | 3749c1b88c4774b85fcee1e26e8bce8dbeef23c7 (diff) | |
download | slixmpp-aebd115ba2a8dfab7b345dfc121ec73b5dc7a5a1.tar.gz slixmpp-aebd115ba2a8dfab7b345dfc121ec73b5dc7a5a1.tar.bz2 slixmpp-aebd115ba2a8dfab7b345dfc121ec73b5dc7a5a1.tar.xz slixmpp-aebd115ba2a8dfab7b345dfc121ec73b5dc7a5a1.zip |
A few cleanups to make things simpler.
Diffstat (limited to 'sleekxmpp/xmlstream/stanzabase.py')
-rw-r--r-- | sleekxmpp/xmlstream/stanzabase.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sleekxmpp/xmlstream/stanzabase.py b/sleekxmpp/xmlstream/stanzabase.py index 86b528d1..f8242005 100644 --- a/sleekxmpp/xmlstream/stanzabase.py +++ b/sleekxmpp/xmlstream/stanzabase.py @@ -594,8 +594,8 @@ class ElementBase(object): tag = components[0] attributes = components[1:] - if tag not in (self.name, "{%s}%s" % (self.namespace, self.name), - self.plugins, self.plugin_attrib): + if tag not in (self.name, "{%s}%s" % (self.namespace, self.name)) and \ + tag not in self.plugins and tag not in self.plugin_attrib: # The requested tag is not in this stanza, so no match. return False @@ -786,14 +786,11 @@ class ElementBase(object): # that do not have namespaces. namespace = ns_block.split('}')[0] elements = ns_block.split('}')[1].split('/') - elif propagate_ns: + else: # Apply the stanza's namespace to the following # elements since no namespace was provided. namespace = self.namespace elements = ns_block.split('/') - else: - # We don't want to propagate namespaces. - elements = ns_block.split('/') for element in elements: if element: |