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

Unified Diff: tools/auto_bisect/source_control.py

Issue 662403003: Fix mistake in crrev.com/650223005. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/auto_bisect/source_control.py
diff --git a/tools/auto_bisect/source_control.py b/tools/auto_bisect/source_control.py
index d3a086bdd0fc5946e341fe28b51328a2a081b9f5..718a68101ab0f22b6f48b8dcd3793db5703d7ecf 100644
--- a/tools/auto_bisect/source_control.py
+++ b/tools/auto_bisect/source_control.py
@@ -59,7 +59,7 @@ def GetRevisionList(end_revision_hash, start_revision_hash, cwd=None):
def SyncToRevision(revision, sync_client=None):
if not sync_client:
- _, return_code = bisect_utils.RunGit(['checkout', revision])[1]
+ _, return_code = bisect_utils.RunGit(['checkout', revision])
elif sync_client == 'gclient':
return_code = SyncToRevisionWithGClient(revision)
elif sync_client == 'repo':
« 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