Skip to content

Commit

Permalink
Merge 6765afc into 94563c9
Browse files Browse the repository at this point in the history
  • Loading branch information
norpol committed Jul 30, 2018
2 parents 94563c9 + 6765afc commit a6317e0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dxf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ def __init__(self, host, auth=None, insecure=False, auth_host=None, tlsverify=Tr
:param auth_host: Host to use for token authentication. If set, overrides host returned by then registry.
:type auth_host: str
:param tlsverify: When set to False, do not verify TLS certificate.
:type tlsverify: bool
:param tlsverify: When set to False, do not verify TLS certificate. When pointed to a `<ca bundle>.crt` file use this for TLS verification.
:type tlsverify: bool or str
"""
self._base_url = ('http' if insecure else 'https') + '://' + host + '/v2/'
self._host = host
Expand Down Expand Up @@ -360,8 +360,8 @@ def __init__(self, host, repo, auth=None, insecure=False, auth_host=None, tlsver
:param auth_host: Host to use for token authentication. If set, overrides host returned by then registry.
:type auth_host: str
:param tlsverify: When set to False do not verify TLS certificate
:type tlsverify: bool
:param tlsverify: When set to False, do not verify TLS certificate. When pointed to a `<ca bundle>.crt` file use this for TLS verification.
:type tlsverify: bool or str
"""
super(DXF, self).__init__(host, auth, insecure, auth_host, tlsverify)
self._repo = repo
Expand Down

0 comments on commit a6317e0

Please sign in to comment.