From 82116c1d04c92655b70e5bfc4545d1952baefb38 Mon Sep 17 00:00:00 2001 From: Christopher Gallo Date: Wed, 15 May 2024 17:59:01 -0500 Subject: [PATCH] Fixed a bug in the config parser when the Verify option was not specified. Fixed #2149 --- SoftLayer/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SoftLayer/config.py b/SoftLayer/config.py index 97ccb9d0c..e695d6b9a 100644 --- a/SoftLayer/config.py +++ b/SoftLayer/config.py @@ -61,7 +61,7 @@ def get_client_settings_config_file(**kwargs): # pylint: disable=inconsistent-r 'proxy': '', 'userid': '', 'access_token': '', - 'verify': True + 'verify': "True" }) config.read(config_files)