"""
log = logging.getLogger('hooke')
log.debug('engine starting')
+ for playlist in hooke.playlists: # Curve._hooke is not pickled.
+ for curve in playlist:
+ curve.set_hooke(hooke)
while True:
log.debug('engine waiting for command')
msg = ui_to_command_queue.get()
help=self.__doc__, plugin=plugin)
def _run(self, hooke, inqueue, outqueue, params):
- p = load(path=params['input'], drivers=params['drivers'])
+ p = load(path=params['input'], drivers=params['drivers'], hooke=hooke)
self._set_playlist(hooke, params, p)
outqueue.put(p)