From cb80d8576c4fe2b3e5848bcc5f5a6c5b676f5a2e Mon Sep 17 00:00:00 2001 From: James Kasten Date: Sat, 17 Nov 2012 04:35:45 -0500 Subject: [PATCH] fixed gen_https_names bug --- trustify/client/client.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/trustify/client/client.py b/trustify/client/client.py index 55a1ede10..2d29e30ac 100644 --- a/trustify/client/client.py +++ b/trustify/client/client.py @@ -532,7 +532,8 @@ def authenticate(): # This is being tested and will have to be cleaned and organized # once the protocol is finalized. if r.challenge and all_payment_challenge(r): - challenges, dn = challenge_factory(r, os.path.abspath(req_file), os.path.abspath(key_file), config) + # dont need to change domain names here + challenges, temp = challenge_factory(r, os.path.abspath(req_file), os.path.abspath(key_file), config) for chall in challenges: chall.perform(quiet=curses)