We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97d34f7 commit c753641Copy full SHA for c753641
SoftLayer/CLI/login.py
@@ -8,7 +8,6 @@
8
from SoftLayer.CLI.command import SLCommand as SLCommand
9
from SoftLayer.CLI import environment
10
from SoftLayer import config
11
-from SoftLayer import consts
12
13
14
def censor_password(value):
SoftLayer/config.py
@@ -80,7 +80,7 @@ def get_client_settings_config_file(**kwargs): # pylint: disable=inconsistent-r
80
r_config["verify"] = True
81
elif r_config["verify"].lower() == "false":
82
r_config["verify"] = False
83
- elif r_config["verify"]:
+ elif isinstance(r_config["verify"], str):
84
os.environ['SSL_CERT_FILE'] = r_config["verify"]
85
return r_config
86
0 commit comments