]> git.parisson.com Git - timeside.git/commitdiff
Fix parent instanciation in the pipe
authorGuillaume Pellerin <yomguy@parisson.com>
Tue, 27 May 2014 09:50:01 +0000 (11:50 +0200)
committerGuillaume Pellerin <yomguy@parisson.com>
Tue, 27 May 2014 09:50:01 +0000 (11:50 +0200)
timeside/core.py

index d821225405d99e7457874a789273edd32aaf882d..6a7ecced16ee0ad84ff381523035c5580ee157b2 100644 (file)
@@ -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):