| Index: tools/telemetry/telemetry/decorators.py
|
| diff --git a/tools/telemetry/telemetry/decorators.py b/tools/telemetry/telemetry/decorators.py
|
| index 0c30c8a4cc3bbc4fd7b7ace60c64d371f23bca80..0b56f7a66f2bae21b8342329183235662a046dc8 100644
|
| --- a/tools/telemetry/telemetry/decorators.py
|
| +++ b/tools/telemetry/telemetry/decorators.py
|
| @@ -169,12 +169,11 @@ def ShouldSkip(test, possible_browser):
|
| for enabled_string in enabled_strings:
|
| if enabled_string in platform_attributes:
|
| return False, None
|
| - return (True,
|
| - 'Skipping %s (%s) because it is only enabled for %s. '
|
| - 'You are running %s.' % (name, str(test),
|
| - ' or '.join(enabled_strings),
|
| - ' '.join(platform_attributes)))
|
| - return False, None
|
| + return (True,
|
| + 'Skipping %s (%s) because it is only enabled for %s. '
|
| + 'You are running %s.' % (name, str(test),
|
| + ' or '.join(enabled_strings),
|
| + ' '.join(platform_attributes)))
|
|
|
| return False, None
|
|
|
|
|