diff options
author | Florent Le Coz <louiz@louiz.org> | 2014-07-21 20:27:53 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-07-21 20:32:09 +0200 |
commit | 373505f48351a310f7d7ddf0da92fd604682daf1 (patch) | |
tree | f9e8acc71e984efde700d65944345f9c7c29bda1 /examples | |
parent | a2cad40f9163f7f14a5607853ff42f458844462e (diff) | |
download | slixmpp-373505f48351a310f7d7ddf0da92fd604682daf1.tar.gz slixmpp-373505f48351a310f7d7ddf0da92fd604682daf1.tar.bz2 slixmpp-373505f48351a310f7d7ddf0da92fd604682daf1.tar.xz slixmpp-373505f48351a310f7d7ddf0da92fd604682daf1.zip |
Clean a new bunch of stuf
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/register_account.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/register_account.py b/examples/register_account.py index 199f697c..bbe1dc53 100755 --- a/examples/register_account.py +++ b/examples/register_account.py @@ -101,7 +101,7 @@ class RegisterBot(slixmpp.ClientXMPP): resp['register']['password'] = self.password try: - resp.send(now=True) + resp.send() logging.info("Account created for %s!" % self.boundjid) except IqError as e: logging.error("Could not register account: %s" % |