From: Guillaume Pellerin Date: Tue, 27 May 2014 09:50:01 +0000 (+0200) Subject: Fix parent instanciation in the pipe X-Git-Tag: 0.5.6~4^2 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=b5f993501c806ee0c0546836e508279b10f013e8;p=timeside.git Fix parent instanciation in the pipe --- 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):