diff options
author | Yuqian Li <liyuqian@google.com> | 2017-11-06 15:59:12 -0500 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2017-11-07 01:46:29 +0000 |
commit | 61ffd53a906524836e2704b89637cceb487da76c (patch) | |
tree | aa43bd38843177703cee81e74d3137dc0ddad2c3 /tools | |
parent | 8c68c65e27d2a231c875616ee97298b73a2e7777 (diff) |
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>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/calmbench/ab.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/calmbench/ab.py b/tools/calmbench/ab.py index 2a3944d577..b5b5c8d5e1 100644 --- a/tools/calmbench/ab.py +++ b/tools/calmbench/ab.py @@ -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() |