diff options
Diffstat (limited to 'branding/scripts/check-ca-crt.py')
-rwxr-xr-x | branding/scripts/check-ca-crt.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/branding/scripts/check-ca-crt.py b/branding/scripts/check-ca-crt.py index 431d059..dbf9b40 100755 --- a/branding/scripts/check-ca-crt.py +++ b/branding/scripts/check-ca-crt.py @@ -20,6 +20,7 @@ def getLocalCert(provider): def getRemoteCert(uri): + print("... checking cert from", uri) fp = urllib.request.urlopen(uri) remote_cert = fp.read().decode('utf-8').strip() fp.close() |