Chromium Code Reviews| Index: tools/telemetry/telemetry/__init__.py |
| diff --git a/tools/telemetry/telemetry/__init__.py b/tools/telemetry/telemetry/__init__.py |
| index c90ed7f0564f6d5734945a05bc976336e06f2ef2..ce7afb51d26d3e3c52653cd644445eafec2ed8db 100644 |
| --- a/tools/telemetry/telemetry/__init__.py |
| +++ b/tools/telemetry/telemetry/__init__.py |
| @@ -14,14 +14,15 @@ if sys.version_info < (2, 7): |
| from telemetry.internal.util import global_hooks |
| global_hooks.InstallHooks() |
| -# Add depdendencies into our path. |
| +# Add dependencies into our path. |
| from telemetry.core import util |
| def _AddDirToPythonPath(*path_parts): |
| path = os.path.abspath(os.path.join(*path_parts)) |
| if os.path.isdir(path) and path not in sys.path: |
| - # Some callsite that use telemetry assumes that sys.path[0] is the directory |
| - # containing the script, so we add these extra paths to right after it. |
| + # Some call sites that use Telemetry assume that sys.path[0] is the |
| + # directory containing the script, so we add these extra paths to right |
| + # after sys.path[0]. |
|
qyearsley
2015/12/17 00:02:15
This was not an automatic change from codespell
|
| sys.path.insert(1, path) |