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

Unified Diff: slave/skia_slave_scripts/download_skps.py

Issue 16226005: Run skimage on the bots. (Closed) Base URL: https://skia.googlecode.com/svn/buildbot
Patch Set: Respond to comments. Created 7 years, 6 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
Index: slave/skia_slave_scripts/download_skps.py
diff --git a/slave/skia_slave_scripts/download_skps.py b/slave/skia_slave_scripts/download_skps.py
index 77b755cb77fdc1e09b54439dc34ef6854c307eda..77bb53010a5778bed75338b5c7713b077b79ef28 100644
--- a/slave/skia_slave_scripts/download_skps.py
+++ b/slave/skia_slave_scripts/download_skps.py
@@ -15,9 +15,10 @@ import sys
class DownloadSKPs(BuildStep):
def __init__(self, timeout=12800, no_output_timeout=9600, **kwargs):
- super (DownloadSKPs, self).__init__(timeout=timeout,
- no_output_timeout=no_output_timeout,
- **kwargs)
+ super (DownloadSKPs, self).__init__(
+ timeout=timeout,
+ no_output_timeout=no_output_timeout,
+ **kwargs)
def _CreateLocalStorageDirs(self):
"""Creates required local storage directories for this script."""
@@ -56,4 +57,4 @@ class DownloadSKPs(BuildStep):
if '__main__' == __name__:
- sys.exit(BuildStep.RunBuildStep(DownloadSKPs))
+ sys.exit(BuildStep.RunBuildStep(DownloadSKPs))

Powered by Google App Engine
This is Rietveld 408576698