Updated error message as suggested by bcwaldon

Remove the "see nova {image,flavor}-list" as this should go to help as
suggested by bcwaldon.
This commit is contained in:
Chmouel Boudjnah 2011-08-30 08:39:17 -05:00
parent 8ac20e7447
commit 2afd70d268

@ -44,11 +44,9 @@ def _boot(cs, args, reservation_id=None, min_count=None, max_count=None):
"be 0")
if not args.image:
raise exceptions.CommandError("need to specify an Image ID "
"see nova image-list")
raise exceptions.CommandError("you need to specify a Image ID ")
if not args.flavor:
raise exceptions.CommandError("need to specify a Flavor ID "
"see nova flavor-list")
raise exceptions.CommandError("you need to specify a Flavor ID ")
flavor = args.flavor
image = args.image