Delegate ownership of terminado server to TerminadoEventHandler

This commit is contained in:
Kristóf Tóth
2018-03-02 16:23:19 +01:00
parent 338e690842
commit cc2c6009dd
2 changed files with 6 additions and 6 deletions

View File

@ -8,7 +8,7 @@ from tfw.config import tfwenv
if __name__ == '__main__':
ide = SourceCodeEventHandler('webide', tfwenv.WEBIDE_WD)
terminado = TerminadoEventHandler('terminado', 'terminado')
terminado = TerminadoEventHandler('terminado')
processmanager = ProcessManagingEventHandler('processmanager', ide.monitor)
eventhandlers = {ide, terminado, processmanager}