]> git.parisson.com Git - timeside.git/commitdiff
Fix parent instanciation
authorGuillaume Pellerin <yomguy@parisson.com>
Tue, 27 May 2014 10:20:52 +0000 (12:20 +0200)
committerGuillaume Pellerin <yomguy@parisson.com>
Tue, 27 May 2014 10:20:52 +0000 (12:20 +0200)
timeside/core.py

index 6a7ecced16ee0ad84ff381523035c5580ee157b2..d821225405d99e7457874a789273edd32aaf882d 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):