]> git.parisson.com Git - timeside.git/commitdiff
Fix isssue in AnalyzerResultContainer representation
authorThomas Fillon <thomas@parisson.com>
Thu, 11 Jul 2013 13:27:20 +0000 (15:27 +0200)
committerThomas Fillon <thomas@parisson.com>
Mon, 19 Aug 2013 13:23:29 +0000 (15:23 +0200)
timeside/analyzer/core.py

index 0569c639bb2e25f2f3118be545eb6cede0d9830e..da55ecb5189ae0abf560f7ef38fedd2e6e65ac09 100644 (file)
@@ -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'):