| Index: tools/auto_bisect/source_control.py
|
| diff --git a/tools/auto_bisect/source_control.py b/tools/auto_bisect/source_control.py
|
| index 0da44d96064345432c11afbabb7100531dada626..6978ce4aafb2186d0bd654db0a2fa086fbd6dd23 100644
|
| --- a/tools/auto_bisect/source_control.py
|
| +++ b/tools/auto_bisect/source_control.py
|
| @@ -154,7 +154,7 @@ class GitSourceControl(SourceControl):
|
|
|
| for i in search_range:
|
| svn_pattern = 'git-svn-id: %s@%d' % (depot_svn, i)
|
| - commit_position_pattern = 'Cr-Commit-Position: .*@{#%d}' % i
|
| + commit_position_pattern = '^Cr-Commit-Position: .*@{#%d}' % i
|
| cmd = ['log', '--format=%H', '-1', '--grep', svn_pattern,
|
| '--grep', commit_position_pattern, 'origin/master']
|
|
|
|
|