timer service wont try to launch timers on project tasks

This commit is contained in:
iLLiCiTiT 2019-07-23 18:14:51 +02:00
parent 6f5a80bf1b
commit cef42b84b7

View file

@ -79,6 +79,14 @@ class TimersManager(metaclass=Singleton):
}
'''
self.last_task = data
if len(input_data['hierarchy']) < 1:
self.log.error((
'Timer has been launched on task which is child of Project.'
' That is not allowed in Pype!'
))
return
for module in self.modules:
module.start_timer_manager(data)
self.is_running = True