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

Unified Diff: tools/telemetry/telemetry/util/exception_formatter.py

Issue 739623005: [Telemetry] Resolve errors due to new pylint checker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ready to land Created 6 years, 1 month 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 | « tools/telemetry/telemetry/util/cloud_storage.py ('k') | tools/telemetry/telemetry/util/trace.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/util/exception_formatter.py
diff --git a/tools/telemetry/telemetry/util/exception_formatter.py b/tools/telemetry/telemetry/util/exception_formatter.py
index 402461b5a2811f0c0f919884083af1aad5bb7170..8dd283168c45a3bac26271a0af6d81b538209e81 100644
--- a/tools/telemetry/telemetry/util/exception_formatter.py
+++ b/tools/telemetry/telemetry/util/exception_formatter.py
@@ -15,9 +15,8 @@ from telemetry.core import util
def PrintFormattedException(exception_class=None, exception=None, tb=None,
msg=None):
- if not (bool(exception_class) == bool(exception) == bool(tb)):
- raise ValueError('Must specify all or none of '
- 'exception_class, exception, and tb')
+ assert bool(exception_class) == bool(exception) == bool(tb), (
+ 'Must specify all or none of exception_class, exception, and tb')
if not exception_class:
exception_class, exception, tb = sys.exc_info()
« no previous file with comments | « tools/telemetry/telemetry/util/cloud_storage.py ('k') | tools/telemetry/telemetry/util/trace.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698