From: Thomas Fillon Date: Thu, 11 Jul 2013 13:27:20 +0000 (+0200) Subject: Fix isssue in AnalyzerResultContainer representation X-Git-Tag: 0.5.0~84 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=05976210177a0e7d745a70226c160b840504ae0d;p=timeside.git Fix isssue in AnalyzerResultContainer representation --- diff --git a/timeside/analyzer/core.py b/timeside/analyzer/core.py index 0569c63..da55ecb 100644 --- a/timeside/analyzer/core.py +++ b/timeside/analyzer/core.py @@ -226,7 +226,7 @@ class AnalyzerResultContainer(object): return len(self.results) def __repr__(self): - return [res.as_dict() for res in self.results] + return [res.as_dict() for res in self.results].__repr__() def __eq__(self, other): if hasattr(other, 'results'):