Fixes target-project-id argument in zone transfer command

This patch makes target-project-id option as optional
in 'openstack zone transfer request create' command.

Change-Id: I98098d3263781c3517b4eb85ff5d1aeedb55a68f
Closes-Bug: #1499541
This commit is contained in:
sonu.kumar 2015-10-08 11:45:13 +05:30
parent f2192badc1
commit e1e07721c0

View File

@ -264,8 +264,7 @@ class CreateTransferRequestCommand(show.ShowOne):
parser.add_argument('zone_id', help="Zone ID to transfer.",)
parser.add_argument(
'--target-project-id',
help="Target Project ID to transfer to.",
required=True)
help="Target Project ID to transfer to.")
parser.add_argument('--description', help="Description")
return parser