From b07019f7898f2e5a1b57d5a26dfce9f7184938f6 Mon Sep 17 00:00:00 2001 From: Romain Dorgueil Date: Sun, 25 Dec 2016 14:25:51 +0100 Subject: [PATCH] fix problem in renaming --- bonobo/core/contexts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bonobo/core/contexts.py b/bonobo/core/contexts.py index 005a6b2..d0ed27d 100644 --- a/bonobo/core/contexts.py +++ b/bonobo/core/contexts.py @@ -137,7 +137,7 @@ class ComponentExecutionContext(WithStatistics): self.stats['in'] += 1 return self.input.get(timeout=1) - def _call(self, bag_or_arg): + def _call(self, bag): # todo add timer if getattr(self.component, '_with_context', False): return bag.apply(self.component, self)