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

Unified Diff: my_activity.py

Issue 11359168: Reword "turning off" to "skipping WebKit checks". (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 8 years, 1 month 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: my_activity.py
diff --git a/my_activity.py b/my_activity.py
index 3030a3e96e58093879e472163e3862b5781212e1..67354948e360722e46bbb251ef54e58262b2188a 100755
--- a/my_activity.py
+++ b/my_activity.py
@@ -677,14 +677,14 @@ class MyActivity(object):
assert(self.webkit_repo)
git_dir = os.path.normpath(self.webkit_repo + "/.git")
if not os.path.exists(git_dir):
- print "%s doesn't exist, turning off WebKit checks." % git_dir
+ print "%s doesn't exist, skipping WebKit checks." % git_dir
self.webkit_repo = None
return
try:
self.git_cmd(self.webkit_repo, "fetch", "origin")
except subprocess.CalledProcessError:
- print "Failed to update WebKit repo, turning off WebKit checks."
+ print "Failed to update WebKit repo, skipping WebKit checks."
self.webkit_repo = None
return
@@ -696,13 +696,13 @@ class MyActivity(object):
global webkitpy
webkitpy = __import__('webkitpy.common.config.committers')
except ImportError:
- print "Failed to import WebKit committer list, turning off WebKit checks."
+ print "Failed to import WebKit committer list, skipping WebKit checks."
self.webkit_repo = None
return
if not webkit_account(self.user):
email = self.user + "@chromium.org"
- print "No %s in committers.py, turning off WebKit checks." % email
+ print "No %s in committers.py, skipping WebKit checks." % email
self.webkit_repo = None
@staticmethod
« 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