From a45000064c07c418d33bec36945c1dea8bdada26 Mon Sep 17 00:00:00 2001 From: Jason Heard Date: Sun, 15 Nov 2015 16:07:10 -0700 Subject: Add missing slash to URL --- sign_csr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sign_csr.py b/sign_csr.py index ff9332b..a6987ff 100644 --- a/sign_csr.py +++ b/sign_csr.py @@ -5,7 +5,7 @@ import argparse, subprocess, json, os, urllib2, sys, base64, binascii, time, \ def host_token(domain, token, response_payload, user_step_number, file_based): if file_based: - response_url = 'http://{}.well-known/acme-challenge/{}'.format(domain, token) + response_url = 'http://{}/.well-known/acme-challenge/{}'.format(domain, token) # tell the user where to put a file sys.stderr.write("""\ -- cgit v1.2.3