From d80f5cbaa00efd8978bd73f7a7c3a7ebbcd6831a Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Fri, 24 May 2013 17:46:33 +0200 Subject: [PATCH] doc: fix analyzer template results --- doc/timeside_slides.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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... -- 2.39.5