diff options
author | Lance Stout <lancestout@gmail.com> | 2010-06-27 17:39:16 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2010-06-27 17:39:16 -0400 |
commit | 37ada498029c12459e5724ed27db92c828ce2a38 (patch) | |
tree | 93c46419b79a2a502320d41530264b62194e32bb /sleekxmpp | |
parent | 5c76d969f79936ce56828dba2c5ab59214feec12 (diff) | |
download | slixmpp-37ada498029c12459e5724ed27db92c828ce2a38.tar.gz slixmpp-37ada498029c12459e5724ed27db92c828ce2a38.tar.bz2 slixmpp-37ada498029c12459e5724ed27db92c828ce2a38.tar.xz slixmpp-37ada498029c12459e5724ed27db92c828ce2a38.zip |
Fixed indentation to please tab nanny during unit tests.
Diffstat (limited to 'sleekxmpp')
-rw-r--r-- | sleekxmpp/plugins/xep_0033.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0033.py b/sleekxmpp/plugins/xep_0033.py index 80d58a40..89770dc1 100644 --- a/sleekxmpp/plugins/xep_0033.py +++ b/sleekxmpp/plugins/xep_0033.py @@ -35,7 +35,7 @@ class Addresses(ElementBase): for addrXML in self.xml.findall('{%s}address' % Address.namespace): # ElementTree 1.2.6 does not support [@attr='value'] in findall if atype is None or addrXML.attrib.get('type') == atype: - addresses.append(Address(xml=addrXML, parent=None)) + addresses.append(Address(xml=addrXML, parent=None)) return addresses def setAddresses(self, addresses, set_type=None): |