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

Unified Diff: tools/auto_bisect/bisect_utils.py

Issue 504223003: Given git hash, get SVN revision(if available) or Commit position. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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 | tools/auto_bisect/source_control.py » ('j') | tools/auto_bisect/source_control.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/auto_bisect/bisect_utils.py
diff --git a/tools/auto_bisect/bisect_utils.py b/tools/auto_bisect/bisect_utils.py
index a0017012d352a94ad7ea971ac5d85c8255021335..ebb302e75ea9087217a9d198a49718794d378c6b 100644
--- a/tools/auto_bisect/bisect_utils.py
+++ b/tools/auto_bisect/bisect_utils.py
@@ -300,7 +300,7 @@ def IsDepsFileBlink(git_revision=''):
if ret_val:
search_str = 'blink'
search_key = 'webkit_trunk'
- git_cmd = ['cat-file', 'blob', '%s:%s' %(git_revision, 'FILE_DEPS')]
+ git_cmd = ['cat-file', 'blob', '%s:%s' %(git_revision, FILE_DEPS)]
(out_put, ret_val) = RunGit(git_cmd)
if ret_val:
print 'Error processing DEPS or .DEPS.git'
« no previous file with comments | « no previous file | tools/auto_bisect/source_control.py » ('j') | tools/auto_bisect/source_control.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698