Skip to content

Commit

Permalink
Cisco plugin CLI call to quantumclient CLI
Browse files Browse the repository at this point in the history
when Cisco plugin CLI is used, it wil call the quantumclient CLI if the command is not in its extensions.
the version of the Quantum API must be specified when the the Cisco plugin CLI is looking for Quantum commands.

Bug 1000251

Change-Id: I3e4039edb7cb79411fc60677ef6f99fca8007dc9
  • Loading branch information
matrohon authored and Gary Kotton committed Jun 17, 2012
1 parent 3b52fd3 commit 217434c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quantum/plugins/cisco/client/cli.py
Expand Up @@ -192,7 +192,7 @@ def main():
sys.exit(1)

CMD = args[0]
if CMD in qcli.commands.keys():
if CMD in qcli.commands['1.1'].keys():
qcli.main()
sys.exit(1)
if CMD not in COMMANDS.keys():
Expand Down

0 comments on commit 217434c

Please sign in to comment.