From 8857cb738bb70f84f4e697662fd95dd45ca82016 Mon Sep 17 00:00:00 2001 From: James Kasten Date: Tue, 14 Apr 2015 02:13:12 -0700 Subject: [PATCH] fix get_chall_status call --- letsencrypt/client/auth_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letsencrypt/client/auth_handler.py b/letsencrypt/client/auth_handler.py index e72b1ce40..fce5fd87a 100644 --- a/letsencrypt/client/auth_handler.py +++ b/letsencrypt/client/auth_handler.py @@ -190,7 +190,7 @@ class AuthHandler(object): # pylint: disable=too-many-instance-attributes # Note: if the whole authorization is invalid, the individual failed # challenges will be determined here... for achall in achalls: - status = self._get_chall_status(self.authzr[domain]) + status = self._get_chall_status(self.authzr[domain], achall) # This does nothing for challenges that have yet to be decided yet. if status == messages2.STATUS_VALID: completed.append(achall)