diff options
author | Dann Martens <me@dannmartens.com> | 2011-01-13 15:04:16 +0100 |
---|---|---|
committer | Dann Martens <me@dannmartens.com> | 2011-01-13 15:04:16 +0100 |
commit | b68e7bed403924dc4ebf7294854d4892c48ce0ab (patch) | |
tree | b2783cf9dbc9cfc6e98349bc824e3f6066993487 | |
parent | 4be6482ff3278612365863575dceeda9fd9a88c3 (diff) | |
download | slixmpp-b68e7bed403924dc4ebf7294854d4892c48ce0ab.tar.gz slixmpp-b68e7bed403924dc4ebf7294854d4892c48ce0ab.tar.bz2 slixmpp-b68e7bed403924dc4ebf7294854d4892c48ce0ab.tar.xz slixmpp-b68e7bed403924dc4ebf7294854d4892c48ce0ab.zip |
Fixed typo.
-rw-r--r-- | sleekxmpp/basexmpp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/basexmpp.py b/sleekxmpp/basexmpp.py index 42cbaa04..e3c7bc5a 100644 --- a/sleekxmpp/basexmpp.py +++ b/sleekxmpp/basexmpp.py @@ -245,7 +245,7 @@ class BaseXMPP(XMLStream): """Create a Presence stanza associated with this stream.""" return Presence(self, *args, **kwargs) - def make_iq(self, id=0, ifrom=None, ito=None, type=None, query=None): + def make_iq(self, id=0, ifrom=None, ito=None, itype=None, query=None): """ Create a new Iq stanza with a given Id and from JID. |