diff --git a/README.md b/README.md index 2de72bd6..e58cb72b 100644 --- a/README.md +++ b/README.md @@ -379,7 +379,7 @@ Equivalent CLI options: `docker --tlsverify --tlscacert /path/to/ca.pem ...` ```python tls_config = docker.tls.TLSConfig( - True, client_cert=('/path/to/client-cert.pem', '/path/to/client-key.pem') + client_cert=('/path/to/client-cert.pem', '/path/to/client-key.pem') ) client = docker.Client(base_url='', tls=tls_config) ```