| Index: tools/telemetry/telemetry/core/platform/linux_based_platform_backend.py
|
| diff --git a/tools/telemetry/telemetry/core/platform/linux_based_platform_backend.py b/tools/telemetry/telemetry/core/platform/linux_based_platform_backend.py
|
| index 4eb1d53644fa7013ee1ea0c5c63fee6c6f9d6c6c..8ced296ba03618b3eedf6b1546f593e7a1626cbb 100644
|
| --- a/tools/telemetry/telemetry/core/platform/linux_based_platform_backend.py
|
| +++ b/tools/telemetry/telemetry/core/platform/linux_based_platform_backend.py
|
| @@ -153,7 +153,7 @@ class LinuxBasedPlatformBackend(platform_backend.PlatformBackend):
|
| Multi-CPU machines will have multiple 'jiffies:' lines, all of which will be
|
| essentially the same. Return the first one."""
|
| jiffies_timer_lines = self.RunCommand(
|
| - ['grep', 'jiffies','/proc/timer_list'])
|
| + ['grep', 'jiffies', '/proc/timer_list'])
|
| if not jiffies_timer_lines:
|
| raise Exception('Unable to find jiffies from /proc/timer_list')
|
| jiffies_timer_list = jiffies_timer_lines.splitlines()
|
|
|