diff options
author | Lance Stout <lancestout@gmail.com> | 2010-11-18 16:23:18 -0500 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2010-11-18 16:23:18 -0500 |
commit | 8ead33fc3bdb75312c3112db5001cf9544566efb (patch) | |
tree | ed06b39194b2750b50bd878f87ad2c0090c4e06a /sleekxmpp | |
parent | ab25301953138343d3d295aaa8872de9c5bc2cf9 (diff) | |
download | slixmpp-8ead33fc3bdb75312c3112db5001cf9544566efb.tar.gz slixmpp-8ead33fc3bdb75312c3112db5001cf9544566efb.tar.bz2 slixmpp-8ead33fc3bdb75312c3112db5001cf9544566efb.tar.xz slixmpp-8ead33fc3bdb75312c3112db5001cf9544566efb.zip |
Fixed typo
Diffstat (limited to 'sleekxmpp')
-rw-r--r-- | sleekxmpp/plugins/xep_0030.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0030.py b/sleekxmpp/plugins/xep_0030.py index 59c60e66..3253bb68 100644 --- a/sleekxmpp/plugins/xep_0030.py +++ b/sleekxmpp/plugins/xep_0030.py @@ -345,7 +345,7 @@ class xep_0030(base.base_plugin): def add_identity(self, category='', itype='', name='', node=''): self.add_node(node) self.nodes[node].addIdentity(category=category, - id_type=itype, + itype=itype, name=name) def add_item(self, jid=None, name='', node='', subnode=''): |