From ff8414ee178cde843c3174e481b6c19d6f7bf116 Mon Sep 17 00:00:00 2001 From: Peter Palfrader Date: Sat, 13 Sep 2008 19:08:12 +0200 Subject: [PATCH] Fix hexdigest() call --- ud-mailgate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- 2.20.1