Skip to content

Commit

Permalink
Remove conflicting short form command line option for cert_name and key
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Smith committed Dec 12, 2016
1 parent 732a652 commit fffa325
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions acitoolkit/acitoolkitlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@ def set_default(key):
self._parser.add_argument('-p', '--password',
default=DEFAULT_PASSWORD,
help='APIC login password.')
self._parser.add_argument('-c', '--cert-name',
self._parser.add_argument('--cert-name',
default=DEFAULT_CERT_NAME,
help='X.509 certificate name attached to APIC AAA user')
self._parser.add_argument('-k', '--key',
self._parser.add_argument('--key',
default=DEFAULT_KEY,
help='Private key matching given certificate, used to generate authentication signature')
if 'nosnapshotfiles' not in qualifier and 'apic' in qualifier:
Expand Down

0 comments on commit fffa325

Please sign in to comment.