| Index: telemetry/telemetry/__init__.py
|
| diff --git a/telemetry/telemetry/__init__.py b/telemetry/telemetry/__init__.py
|
| index 33929b6720423c026ba9757fcaafd1cd9f016286..420f4422de88d29c0de05af247ad50d35399b820 100644
|
| --- a/telemetry/telemetry/__init__.py
|
| +++ b/telemetry/telemetry/__init__.py
|
| @@ -44,8 +44,8 @@ def _AddOptionalSingleGlobToPythonPath(*match_path_parts):
|
| absolute_match_path = _JoinPath(*match_path_parts)
|
| paths = glob.glob(absolute_match_path)
|
| if len(paths) > 1:
|
| - raise ImportError("More than one result was found for glob {}"
|
| - .format(absolute_match_path))
|
| + raise ImportError("More than one result was found for glob {}"\
|
| + .format(absolute_match_path))
|
| for path in paths:
|
| _InsertPath(path)
|
|
|
|
|