diff options
author | Lance Stout <lancestout@gmail.com> | 2012-01-25 20:41:45 -0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-01-25 20:41:45 -0800 |
commit | 999f1932ccf35fcc1f99e210c9b5d4434e459fe1 (patch) | |
tree | f7302bc6cdf06595525683d46aaca50cc1b7dc9c | |
parent | 69940a8ab9f74e04d46cf6f7e6359cb1a58766f5 (diff) | |
parent | 5f1d4ce43308bb264dff485a8c29eb9b4d2fe534 (diff) | |
download | slixmpp-999f1932ccf35fcc1f99e210c9b5d4434e459fe1.tar.gz slixmpp-999f1932ccf35fcc1f99e210c9b5d4434e459fe1.tar.bz2 slixmpp-999f1932ccf35fcc1f99e210c9b5d4434e459fe1.tar.xz slixmpp-999f1932ccf35fcc1f99e210c9b5d4434e459fe1.zip |
Merge pull request #138 from rhcarvalho/patch-2
Set default argument value.
-rw-r--r-- | sleekxmpp/thirdparty/suelta/mechanisms/cram_md5.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/thirdparty/suelta/mechanisms/cram_md5.py b/sleekxmpp/thirdparty/suelta/mechanisms/cram_md5.py index ba44befe..e07bb883 100644 --- a/sleekxmpp/thirdparty/suelta/mechanisms/cram_md5.py +++ b/sleekxmpp/thirdparty/suelta/mechanisms/cram_md5.py @@ -33,7 +33,7 @@ class CRAM_MD5(Mechanism): if 'savepass' not in self.values: del self.values['password'] - def process(self, challenge): + def process(self, challenge=None): """ """ if challenge is None: |