Fix python-ironicclient crash

- ca_file, cert_file and key_file arguements were renamed part of
  e3d35647 but the commit e3d35647 never renamed the other place this
  variables were used.
- This commit properly renames those variables back to sane values and
  fixes the crash

Change-Id: I7b40b2e6a314abc734d28b76626f09f3d31c0d8b
Closes-Bug: 1386454
This commit is contained in:
Arun S A G 2014-10-27 23:52:34 +00:00
parent 9d6137380b
commit 108938c769
1 changed files with 3 additions and 3 deletions

View File

@ -412,9 +412,9 @@ class IronicShell(object):
'token': args.os_auth_token,
'insecure': args.insecure,
'timeout': args.timeout,
'ca_file': args.ca_file,
'cert_file': args.cert_file,
'key_file': args.key_file,
'ca_file': args.os_cacert,
'cert_file': args.os_cert,
'key_file': args.os_key,
'auth_ref': None,
}
elif (args.os_username and