diff options
author | prasadv <prasadv@chromium.org> | 2014-08-27 17:39:46 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-08-28 00:40:59 +0000 |
commit | c99c87acd111df5c08f20e89e84e3ae1edfc4d4e (patch) | |
tree | abb224832b2cf6faaf8045159070061f04a75b84 /tools/auto_bisect/source_control.py | |
parent | efba177008e6b876a085a96426c63566b1efc657 (diff) | |
download | chromium_src-c99c87acd111df5c08f20e89e84e3ae1edfc4d4e.zip chromium_src-c99c87acd111df5c08f20e89e84e3ae1edfc4d4e.tar.gz chromium_src-c99c87acd111df5c08f20e89e84e3ae1edfc4d4e.tar.bz2 |
Fix git log command to while processing Commit position in SVNFindRev method
BUG=
NOTRY=true
Review URL: https://codereview.chromium.org/511033002
Cr-Commit-Position: refs/heads/master@{#292285}
Diffstat (limited to 'tools/auto_bisect/source_control.py')
-rw-r--r-- | tools/auto_bisect/source_control.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/auto_bisect/source_control.py b/tools/auto_bisect/source_control.py index fd3c4e3..27bd7ba 100644 --- a/tools/auto_bisect/source_control.py +++ b/tools/auto_bisect/source_control.py @@ -230,7 +230,7 @@ class GitSourceControl(SourceControl): # TODO(prasadv): Use an appropriate command to find commit position instead # of parsing the log. Resolve this once 407316 is fixed. commit_position_pattern = 'Cr-Commit-Position: .*@\{#(?P<commit>[0-9]+)\}' - cmd = ['log', '--format=%b', '-1', 'origin/master', git_revision] + cmd = ['log', '--format=%b', '-1', git_revision] output = bisect_utils.CheckRunGit(cmd, cwd=cwd) if output: version_re = re.compile(commit_position_pattern) |