| Index: infra/bots/recipes/upload_nano_results.py
|
| diff --git a/infra/bots/recipes/upload_nano_results.py b/infra/bots/recipes/upload_nano_results.py
|
| index 8cc39be693582c6b810559927a0094f282645b3b..2abe388e856ca8f4d1dcb598b98b205d7a0f6019 100644
|
| --- a/infra/bots/recipes/upload_nano_results.py
|
| +++ b/infra/bots/recipes/upload_nano_results.py
|
| @@ -18,8 +18,8 @@ DEPS = [
|
| def RunSteps(api):
|
| # Upload the nanobench resuls.
|
| builder_name = api.properties['buildername']
|
| - issue = str(api.properties.get('issue'))
|
| - patchset = str(api.properties.get('patchset'))
|
| + issue = str(api.properties.get('issue', ''))
|
| + patchset = str(api.properties.get('patchset', ''))
|
|
|
| now = api.time.utcnow()
|
|
|
|
|