From: Guillaume Pellerin Date: Fri, 24 May 2013 15:46:33 +0000 (+0200) Subject: doc: fix analyzer template results X-Git-Tag: 0.5.0~106 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=d80f5cbaa00efd8978bd73f7a7c3a7ebbcd6831a;p=timeside.git doc: fix analyzer template results --- diff --git a/doc/timeside_slides.html b/doc/timeside_slides.html index 07df329..7e9ee0e 100644 --- a/doc/timeside_slides.html +++ b/doc/timeside_slides.html @@ -446,7 +446,7 @@ class NewAnalyzer(Processor): def process(self, frames, eod=False): # do process things... # and maybe store some results : - # self.results = ... + # self.result_data = ... return frames, eod @@ -454,7 +454,7 @@ class NewAnalyzer(Processor): container = AnalyzerResultContainer() result = AnalyzerResult(id = self.id(), name = self.name(), unit = "something") - result.value = self.results + result.value = self.result_data container.add_result(result) # add other results in the container if needed...