| Index: tools/auto_bisect/bisect_utils.py
|
| diff --git a/tools/auto_bisect/bisect_utils.py b/tools/auto_bisect/bisect_utils.py
|
| index 38f56f15bbcc6a2d7e05b7916e4f6852d9d09de7..8944f06c4ade46ac7095c5ec83af330f6485a2ac 100644
|
| --- a/tools/auto_bisect/bisect_utils.py
|
| +++ b/tools/auto_bisect/bisect_utils.py
|
| @@ -258,7 +258,7 @@ def LoadExtraSrc(path_to_file):
|
|
|
| def IsTelemetryCommand(command):
|
| """Attempts to discern whether or not a given command is running telemetry."""
|
| - return ('tools/perf/run_' in command or 'tools\\perf\\run_' in command)
|
| + return 'tools/perf/run_' in command or 'tools\\perf\\run_' in command
|
|
|
|
|
| def _CreateAndChangeToSourceDirectory(working_directory):
|
|
|