Skip to content

Commit 7506072

Browse files
committed
Match the pydoc
verify_ssl should be None by default
1 parent e7c7b96 commit 7506072

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

channelfinder/ChannelFinderClient.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class ChannelFinderClient(object):
3030
__propertiesResource = "/resources/properties"
3131
__tagsResource = "/resources/tags"
3232

33-
def __init__(self, BaseURL=None, username=None, password=None, verify_ssl=True):
33+
def __init__(self, BaseURL=None, username=None, password=None, verify_ssl=None):
3434
"""
3535
Channel finder client object. It provides a connection object to perform the following operations:
3636
- find: find all channels satisfying given searching criteria
@@ -44,7 +44,7 @@ def __init__(self, BaseURL=None, username=None, password=None, verify_ssl=True):
4444
:param BaseURL: the url of the channel finder service
4545
:param username: user name authorized by channel finder service
4646
:param password: password for the authorized user
47-
:param verify: verify the peer TLS certificate
47+
:param verify_ssl: verify the peer TLS certificate
4848
"""
4949
try:
5050
self.__baseURL = self.__getDefaultConfig("BaseURL", BaseURL)

0 commit comments

Comments
 (0)