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

Unified Diff: tools/telemetry/telemetry/value/failure.py

Issue 545523002: [Telemetry] Add capability for values to reference external files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Better approach + more tests Created 6 years, 3 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
Index: tools/telemetry/telemetry/value/failure.py
diff --git a/tools/telemetry/telemetry/value/failure.py b/tools/telemetry/telemetry/value/failure.py
index 3b51b61c7d89f914660a4ca4532d2747801519ae..7e092f3ce1256e3e46e0fb578ad417604c6d6c0a 100644
--- a/tools/telemetry/telemetry/value/failure.py
+++ b/tools/telemetry/telemetry/value/failure.py
@@ -19,7 +19,8 @@ class FailureValue(value_module.Value):
this failure.
"""
exc_type = exc_info[0].__name__
- super(FailureValue, self).__init__(page, exc_type, '', True, description)
+ super(FailureValue, self).__init__(page, exc_type, '', True, description,
+ None)
self._exc_info = exc_info
@classmethod

Powered by Google App Engine
This is Rietveld 408576698