| Index: tools/auto_bisect/source_control.py
|
| diff --git a/tools/auto_bisect/source_control.py b/tools/auto_bisect/source_control.py
|
| index a6a30cc401cb820250dc3720b6179102156b3113..fa7ded63ed5d8864fa3abc927f85851740207586 100644
|
| --- a/tools/auto_bisect/source_control.py
|
| +++ b/tools/auto_bisect/source_control.py
|
| @@ -283,7 +283,7 @@ class GitSourceControl(SourceControl):
|
| Returns a list of commits that touched this file.
|
| """
|
| cmd = ['log', '--format=%H', '%s~1..%s' % (revision_start, revision_end),
|
| - filename]
|
| + '--', filename]
|
| output = bisect_utils.CheckRunGit(cmd)
|
|
|
| return [o for o in output.split('\n') if o]
|
|
|