summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0077/register.py
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2014-07-30 17:52:59 +0200
committerFlorent Le Coz <louiz@louiz.org>2014-07-30 17:52:59 +0200
commitab03ad54aaca1725b943abf16585fa4ef6f08897 (patch)
tree66a18ee01a78b99dbcb5123ea09be523c766cc47 /slixmpp/plugins/xep_0077/register.py
parent2e571ac95089f15df7eee8f29d519f2bef425d4d (diff)
downloadslixmpp-ab03ad54aaca1725b943abf16585fa4ef6f08897.tar.gz
slixmpp-ab03ad54aaca1725b943abf16585fa4ef6f08897.tar.bz2
slixmpp-ab03ad54aaca1725b943abf16585fa4ef6f08897.tar.xz
slixmpp-ab03ad54aaca1725b943abf16585fa4ef6f08897.zip
Fix the iq.send() function, and a bunch of places where it is called
This is a big-and-dirty commit with a bunch of cleanup, maybe breaking a few things, and not fixing all iq.send() calls yet.
Diffstat (limited to 'slixmpp/plugins/xep_0077/register.py')
-rw-r--r--slixmpp/plugins/xep_0077/register.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/slixmpp/plugins/xep_0077/register.py b/slixmpp/plugins/xep_0077/register.py
index 7c6d99a0..133f025a 100644
--- a/slixmpp/plugins/xep_0077/register.py
+++ b/slixmpp/plugins/xep_0077/register.py
@@ -89,7 +89,7 @@ class XEP_0077(BasePlugin):
iq['from'] = ifrom
iq.enable('register')
return iq.send(block=block, timeout=timeout,
- callback=callback, now=True)
+ callback=callback)
def cancel_registration(self, jid=None, ifrom=None, block=True,
timeout=None, callback=None):