Fix assets.py args

BUG=skia:

GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=4588

Change-Id: Id2ddbabf8920e59341555f7f4c65a9b1ccabf4d6
Reviewed-on: https://skia-review.googlesource.com/4588
Reviewed-by: Kevin Lubick <kjlubick@google.com>
Commit-Queue: Eric Boren <borenet@google.com>
This commit is contained in:
Eric Boren 2016-11-09 09:56:37 -05:00 committed by Skia Commit-Bot
parent ec2249fc73
commit a34e95a77b

View File

@ -56,10 +56,12 @@ def main(argv):
prs_add = subs.add_parser('add', help='Add a new asset.')
prs_add.set_defaults(func=add)
prs_add.add_argument('asset_name', help='Name of the asset.')
prs_add.add_argument('--gsutil')
prs_remove = subs.add_parser('remove', help='Remove an asset.')
prs_remove.set_defaults(func=remove)
prs_remove.add_argument('asset_name', help='Name of the asset.')
prs_remove.add_argument('--gsutil')
prs_download = subs.add_parser(
'download', help='Download the current version of an asset.')