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

Unified Diff: telemetry/telemetry/__init__.py

Issue 2978643002: Removing bad-continuation param and fixing resulting errors. Fixed indentation errors, in telemetry… (Closed)
Patch Set: Created 3 years, 5 months 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
« no previous file with comments | « telemetry/pylintrc ('k') | telemetry/telemetry/benchmark.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « telemetry/pylintrc ('k') | telemetry/telemetry/benchmark.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698