@@ -247,7 +247,7 @@ def update_parser_network(self, parser):
247247 action = 'append' ,
248248 help = self .enhance_help_neutron (
249249 _ (
250- "List floating IP(s) according to given network "
250+ "List only floating IP(s) with the specified network "
251251 "(name or ID) "
252252 "(repeat option to fiter on multiple networks)"
253253 )
@@ -260,7 +260,8 @@ def update_parser_network(self, parser):
260260 action = 'append' ,
261261 help = self .enhance_help_neutron (
262262 _ (
263- "List floating IP(s) according to given port (name or ID) "
263+ "List only floating IP(s) with the specified port "
264+ "(name or ID) "
264265 "(repeat option to fiter on multiple ports)"
265266 )
266267 ),
@@ -269,14 +270,20 @@ def update_parser_network(self, parser):
269270 '--fixed-ip-address' ,
270271 metavar = '<ip-address>' ,
271272 help = self .enhance_help_neutron (
272- _ ("List floating IP(s) according to given fixed IP address" )
273+ _ (
274+ "List only floating IP(s) with the specified fixed IP "
275+ "address"
276+ )
273277 ),
274278 )
275279 parser .add_argument (
276280 '--floating-ip-address' ,
277281 metavar = '<ip-address>' ,
278282 help = self .enhance_help_neutron (
279- _ ("List floating IP(s) according to given floating IP address" )
283+ _ (
284+ "List only floating IP(s) with the specified floating IP "
285+ "address"
286+ )
280287 ),
281288 )
282289 parser .add_argument (
@@ -285,8 +292,8 @@ def update_parser_network(self, parser):
285292 choices = ['ACTIVE' , 'DOWN' ],
286293 help = self .enhance_help_neutron (
287294 _ (
288- "List floating IP(s) according to given status ('ACTIVE', "
289- "'DOWN')"
295+ "List only floating IP(s) with the specified status "
296+ "('ACTIVE', 'DOWN')"
290297 )
291298 ),
292299 )
@@ -295,8 +302,8 @@ def update_parser_network(self, parser):
295302 metavar = '<project>' ,
296303 help = self .enhance_help_neutron (
297304 _ (
298- "List floating IP(s) according to given project "
299- "(name or ID) "
305+ "List only floating IP(s) with the specified project "
306+ "(name or ID)"
300307 )
301308 ),
302309 )
@@ -308,7 +315,7 @@ def update_parser_network(self, parser):
308315 action = 'append' ,
309316 help = self .enhance_help_neutron (
310317 _ (
311- "List floating IP(s) according to given router "
318+ "List only floating IP(s) with the specified router "
312319 "(name or ID) "
313320 "(repeat option to fiter on multiple routers)"
314321 )
0 commit comments