githash is a string, not an array

Bug: skia:
Change-Id: I7f0f907ee10de9d4cb431d61ac5b0044e3324ca5
Reviewed-on: https://skia-review.googlesource.com/68060
Reviewed-by: Joe Gregorio <jcgregorio@google.com>
Commit-Queue: Yuqian Li <liyuqian@google.com>
This commit is contained in:
Yuqian Li 2017-11-06 15:59:12 -05:00 committed by Skia Commit-Bot
parent 8c68c65e27
commit 61ffd53a90

View File

@ -80,7 +80,7 @@ def parse_args():
# Additional args for bots
BHELP = "bot specific options"
parser.add_argument('--githash', type=str, default=[], nargs='+', help=BHELP)
parser.add_argument('--githash', type=str, default="", help=BHELP)
parser.add_argument('--keys', type=str, default=[], nargs='+', help=BHELP)
args = parser.parse_args()