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

Unified Diff: Tools/Scripts/webkitpy/tool/commands/stepsequence.py

Issue 27055003: Remove a bunch of unused webkitpy code from tool/, common/checkout/ and common/config/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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 | « Tools/Scripts/webkitpy/tool/commands/rebaselineserver.py ('k') | Tools/Scripts/webkitpy/tool/comments.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/Scripts/webkitpy/tool/commands/stepsequence.py
diff --git a/Tools/Scripts/webkitpy/tool/commands/stepsequence.py b/Tools/Scripts/webkitpy/tool/commands/stepsequence.py
index 894771276e16991a5df1cba81a8f15eb985accb0..c48c2c4d49372350f7b8ecd8de4be77ae4b7f56c 100644
--- a/Tools/Scripts/webkitpy/tool/commands/stepsequence.py
+++ b/Tools/Scripts/webkitpy/tool/commands/stepsequence.py
@@ -31,7 +31,6 @@ import sys
from webkitpy.tool import steps
-from webkitpy.common.checkout.scm import CheckoutNeedsUpdate
from webkitpy.common.system.executive import ScriptError
_log = logging.getLogger(__name__)
@@ -79,12 +78,6 @@ class StepSequence(object):
state = {}
try:
self._run(tool, options, state)
- except CheckoutNeedsUpdate, e:
- _log.info("Commit failed because the checkout is out of date. Please update and try again.")
- if options.parent_command:
- command = tool.command_by_name(options.parent_command)
- command.handle_checkout_needs_update(tool, state, options, e)
- self.exit_after_handled_error(e)
except ScriptError, e:
if not options.quiet:
_log.error(e.message_with_output())
« no previous file with comments | « Tools/Scripts/webkitpy/tool/commands/rebaselineserver.py ('k') | Tools/Scripts/webkitpy/tool/comments.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698