Fixes typo in error message of do_network_create

'eith' is inappropriate

Change-Id: I12b219bd5869d2194d7a8c3495e51e0ead4a64c9
This commit is contained in:
zhangtralon 2014-07-18 10:55:30 +08:00
parent e551cb0a34
commit f10d8b60c8
2 changed files with 2 additions and 2 deletions

View File

@ -922,7 +922,7 @@ def do_network_create(cs, args):
if not (args.cidr or args.cidr_v6):
raise exceptions.CommandError(
_("Must specify eith fixed_range_v4 or fixed_range_v6"))
_("Must specify either fixed_range_v4 or fixed_range_v6"))
kwargs = _filter_network_create_options(args)
if args.multi_host is not None:
kwargs['multi_host'] = bool(args.multi_host == 'T' or

View File

@ -763,7 +763,7 @@ def do_network_create(cs, args):
if not (args.cidr or args.cidr_v6):
raise exceptions.CommandError(
"Must specify eith fixed_range_v4 or fixed_range_v6")
"Must specify either fixed_range_v4 or fixed_range_v6")
kwargs = _filter_network_create_options(args)
if args.multi_host is not None:
kwargs['multi_host'] = bool(args.multi_host == 'T' or