Commit 92ae1a57 authored by hartmanng's avatar hartmanng Committed by Commit bot

Fix typo in check_gpu_bots.py

s/self/gpu_bot/

BUG=

Review URL: https://codereview.chromium.org/590323002

Cr-Commit-Position: refs/heads/master@{#296060}
parent 2dd86aa7
......@@ -112,16 +112,16 @@ class GpuBot:
gpu_bot._end_time = unserializeTime(dict['end_time'])
if 'hours_since_last_run' in dict:
self._hours_since_last_run = dict['hours_since_last_run']
gpu_bot._hours_since_last_run = dict['hours_since_last_run']
if 'failure_string' in dict:
self.failure_string = dict['failure_string']
gpu_bot.failure_string = dict['failure_string']
if 'bot_url' in dict:
self.bot_url = dict['bot_url']
gpu_bot.bot_url = dict['bot_url']
if 'build_url' in dict:
self.build_url = dict['build_url']
gpu_bot.build_url = dict['build_url']
return gpu_bot
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment