Skip to content

Commit 2f2d50d

Browse files
committed
Merge pull request #898 from docker/https_docs_link
Update HTTPS docs link
2 parents 36e302c + 426f66a commit 2f2d50d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docker/errors.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ def __init__(self, msg):
8080
def __str__(self):
8181
return self.msg + (". TLS configurations should map the Docker CLI "
8282
"client configurations. See "
83-
"http://docs.docker.com/examples/https/ for "
84-
"API details.")
83+
"https://docs.docker.com/engine/articles/https/ "
84+
"for API details.")
8585

8686

8787
class NullResource(DockerException, ValueError):

docker/tls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def __init__(self, client_cert=None, ca_cert=None, verify=None,
1313
ssl_version=None, assert_hostname=None,
1414
assert_fingerprint=None):
1515
# Argument compatibility/mapping with
16-
# http://docs.docker.com/examples/https/
16+
# https://docs.docker.com/engine/articles/https/
1717
# This diverges from the Docker CLI in that users can specify 'tls'
1818
# here, but also disable any public/default CA pool verification by
1919
# leaving tls_verify=False

0 commit comments

Comments
 (0)