Skip to content

Commit c685652

Browse files
washcyclerysteboe
authored andcommitted
change ca_certs to ssl_ca_cert
1 parent d409047 commit c685652

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kaggle/api/kaggle_api_extended.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class KaggleApi(KaggleApi):
6969
CONFIG_NAME_PATH = 'path'
7070
CONFIG_NAME_USER = 'username'
7171
CONFIG_NAME_KEY = 'key'
72-
CONFIG_NAME_CA_CERTS = 'ca_certs'
72+
CONFIG_NAME_SSL_CA_CERT = 'ssl_ca_cert'
7373

7474
HEADER_API_VERSION = 'X-Kaggle-ApiVersion'
7575
DATASET_METADATA_FILE = 'dataset-metadata.json'
@@ -174,7 +174,7 @@ def _load_config(self, config_data):
174174
# Cert File
175175

176176
if self.CONFIG_NAME_CA_CERTS in config_data:
177-
configuration.ca_certs = config_data[self.CONFIG_NAME_CA_CERTS]
177+
configuration.ssl_ca_cert = config_data[self.CONFIG_NAME_SSL_CA_CERT]
178178

179179
# Keep config values with class instance, and load api client!
180180

0 commit comments

Comments
 (0)