From d39da7ff74ee21dc3c050531c9f591a450162e9a Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Tue, 27 May 2014 12:20:52 +0200 Subject: [PATCH] Fix parent instanciation --- timeside/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timeside/core.py b/timeside/core.py index 6a7ecce..d821225 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