summaryrefslogtreecommitdiff
path: root/sleekxmpp/thirdparty
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2012-01-25 20:41:45 -0800
committerLance Stout <lancestout@gmail.com>2012-01-25 20:41:45 -0800
commit999f1932ccf35fcc1f99e210c9b5d4434e459fe1 (patch)
treef7302bc6cdf06595525683d46aaca50cc1b7dc9c /sleekxmpp/thirdparty
parent69940a8ab9f74e04d46cf6f7e6359cb1a58766f5 (diff)
parent5f1d4ce43308bb264dff485a8c29eb9b4d2fe534 (diff)
downloadslixmpp-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.
Diffstat (limited to 'sleekxmpp/thirdparty')
-rw-r--r--sleekxmpp/thirdparty/suelta/mechanisms/cram_md5.py2
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: