Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(765)

Unified Diff: gpu/tools/check_gpu_bots.py

Issue 590323002: Fix typo in check_gpu_bots.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/tools/check_gpu_bots.py
diff --git a/gpu/tools/check_gpu_bots.py b/gpu/tools/check_gpu_bots.py
index fb221284f82563b57227ebc8286f8a8d7c2113e3..a072eae3eeb691da28bab15f2b78256cc2255ca3 100755
--- a/gpu/tools/check_gpu_bots.py
+++ b/gpu/tools/check_gpu_bots.py
@@ -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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698