Skip to content

Commit 7751103

Browse files
committed
fix(cookie): Initialize cookie jar
1 parent 6ffbd7d commit 7751103

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ibm_cloud_sdk_core/base_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def __init__(self, vcap_services_name, url, username=None, password=None,
7070
self.url = url
7171
self.http_config = {}
7272
self.authentication_type = authentication_type.lower() if authentication_type else None
73-
self.jar = None
73+
self.jar = CookieJar()
7474
self.api_key = api_key
7575
self.username = username
7676
self.password = password

0 commit comments

Comments
 (0)