From b5f993501c806ee0c0546836e508279b10f013e8 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Tue, 27 May 2014 11:50:01 +0200 Subject: [PATCH] Fix parent instanciation in the pipe --- timeside/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timeside/core.py b/timeside/core.py index d821225..6a7ecce 100644 --- a/timeside/core.py +++ b/timeside/core.py @@ -272,7 +272,7 @@ class ProcessPipe(object): def __ior__(self, other): if isinstance(other, Processor): for parent in other.parents: - self |= parent + self |= parent() self.processors.append(other) other.process_pipe = self elif isinstance(other, ProcessPipe): -- 2.39.5