From: Guillaume Pellerin Date: Tue, 27 May 2014 10:20:52 +0000 (+0200) Subject: Fix parent instanciation X-Git-Tag: 0.5.6~3 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=d39da7ff74ee21dc3c050531c9f591a450162e9a;p=timeside.git Fix parent instanciation --- 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):