From 2bc41fb43fe63d246af3a21e6bb845f64162eceb Mon Sep 17 00:00:00 2001 From: arosen Date: Fri, 7 Jun 2013 21:01:16 -0700 Subject: [PATCH] Add metavar for --fixed-ip This patch adds a metavar for the --fixed-ip option so that it's more clear that the user needs to pass in ip_address=IP_ADDR. Fixes bug 1188889 Change-Id: I66efd444a2df52603f124637072f194497e241e2 --- quantumclient/quantum/v2_0/port.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quantumclient/quantum/v2_0/port.py b/quantumclient/quantum/v2_0/port.py index 1c1c91045..343497c51 100644 --- a/quantumclient/quantum/v2_0/port.py +++ b/quantumclient/quantum/v2_0/port.py @@ -109,7 +109,7 @@ class CreatePort(CreateCommand): '--device_id', help=argparse.SUPPRESS) parser.add_argument( - '--fixed-ip', + '--fixed-ip', metavar='ip_address=IP_ADDR', action='append', help='desired IP for this port: ' 'subnet_id=,ip_address=, '