We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
deis providers
1 parent 313200c commit 2d2c65dCopy full SHA for 2d2c65d
1 file changed
client/deis.py
@@ -1267,7 +1267,8 @@ def providers_list(self, args):
1267
print("=== {owner} Providers".format(**data['results'][0]))
1268
for item in data['results']:
1269
creds = json.loads(item['creds'])
1270
- creds.pop('secret_key')
+ if 'secret_key' in creds:
1271
+ creds.pop('secret_key')
1272
print("{} => {}".format(item['id'], creds))
1273
else:
1274
print('Error!', response.text)
0 commit comments