[fix] uses https

This commit is contained in:
Laurent Peuch 2016-10-30 05:20:40 +01:00
parent ea179b1683
commit 9a4dbd5d31

View file

@ -602,7 +602,7 @@ def _check_domain_is_correctly_configured(domain):
def _dns_ip_match_public_ip(public_ip, domain):
try:
result = requests.get("http://dns-api.org/A/" + domain)
result = requests.get("https://dns-api.org/A/" + domain)
except Exception as exception:
import traceback
traceback.print_exc(file=sys.stdout)