diff options
author | Lance Stout <lancestout@gmail.com> | 2010-07-30 14:11:24 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2010-07-30 14:11:24 -0400 |
commit | 1cedea280499c0b7f7debb6c95442038d8f2d89c (patch) | |
tree | 4b7e103df40f0b0afd2c259aa4b46448ab826a26 /sleekxmpp | |
parent | cbed8029bad691f8353854dc264f83303a196a09 (diff) | |
download | slixmpp-1cedea280499c0b7f7debb6c95442038d8f2d89c.tar.gz slixmpp-1cedea280499c0b7f7debb6c95442038d8f2d89c.tar.bz2 slixmpp-1cedea280499c0b7f7debb6c95442038d8f2d89c.tar.xz slixmpp-1cedea280499c0b7f7debb6c95442038d8f2d89c.zip |
Added optional default value to _getAttr.
Diffstat (limited to 'sleekxmpp')
-rw-r--r-- | sleekxmpp/stanza/iq.py | 3 | ||||
-rw-r--r-- | sleekxmpp/xmlstream/stanzabase.py | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/sleekxmpp/stanza/iq.py b/sleekxmpp/stanza/iq.py index c735ae64..c5ef8bb4 100644 --- a/sleekxmpp/stanza/iq.py +++ b/sleekxmpp/stanza/iq.py @@ -49,6 +49,9 @@ class Iq(RootStanza): Stanza Interface: query -- The namespace of the <query> element if one exists. + Attributes: + types -- May be one of: get, set, result, or error. + Methods: __init__ -- Overrides StanzaBase.__init__. unhandled -- Send error if there are no handlers. diff --git a/sleekxmpp/xmlstream/stanzabase.py b/sleekxmpp/xmlstream/stanzabase.py index 5b41a406..94ff958c 100644 --- a/sleekxmpp/xmlstream/stanzabase.py +++ b/sleekxmpp/xmlstream/stanzabase.py @@ -235,8 +235,8 @@ class ElementBase(tostring.ToString): if name in self.xml.attrib: del self.xml.attrib[name] - def _getAttr(self, name): - return self.xml.attrib.get(name, '') + def _getAttr(self, name, default=''): + return self.xml.attrib.get(name, default) def _getSubText(self, name): if '}' not in name: |