Welche Zeilen aus der acme-tiny.py hast Du genau auskommentiert um das Problem zu lösen. Ich habe nämlich das gleiche Problem.
Ich hab' die modifizierte Datei gerade nicht zur Hand, aber wenn ich in den Originalquellcode schaue, bin ich ziemlich sicher, dass es diese Zeilen waren:
Python: acme-tiny/acme_tiny.py
# check that the file is in place
wellknown_url = "http://{0}/.well-known/acme-challenge/{1}".format(domain, token)
try:
resp = urlopen(wellknown_url)
resp_data = resp.read().decode('utf8').strip()
assert resp_data == keyauthorization
except (IOError, AssertionError):
os.remove(wellknown_path)
raise ValueError("Wrote file to {0}, but couldn't download {1}".format(
wellknown_path, wellknown_url))
Grüße,
Yaisog