From: Peter Palfrader Date: Sat, 13 Sep 2008 17:08:12 +0000 (+0200) Subject: Fix hexdigest() call X-Git-Tag: userdir-ldap-0.3.37~7 X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fuserdir-ldap.git;a=commitdiff_plain;h=ff8414ee178cde843c3174e481b6c19d6f7bf116 Fix hexdigest() call --- diff --git a/ud-mailgate b/ud-mailgate index 29a2873..fb5b7ba 100755 --- a/ud-mailgate +++ b/ud-mailgate @@ -100,7 +100,7 @@ def make_hmac(str): key = F.readline().strip() F.close(); - return hmac.new(key, str, sha1_module).hexdigest + return hmac.new(key, str, sha1_module).hexdigest()