Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Unified Diff: tools/telemetry/telemetry/__init__.py

Issue 1533523004: Run codespell on src/tools/telemetry. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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)
« no previous file with comments | « no previous file | tools/telemetry/telemetry/core/android_action_runner.py » ('j') | tools/telemetry/telemetry/value/summary.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698