changed paths of default event handlers in module

This commit is contained in:
iLLiCiTiT 2021-03-18 09:50:17 +01:00
parent ba69244180
commit 0b5acc75e9

View file

@ -43,13 +43,13 @@ class FtrackModule(
current_dir = os.path.dirname(os.path.abspath(__file__))
server_event_handlers_paths = [
os.path.join(current_dir, "events")
os.path.join(current_dir, "event_handlers_server")
]
server_event_handlers_paths.extend(
ftrack_settings["ftrack_events_path"]
)
user_event_handlers_paths = [
os.path.join(current_dir, "actions")
os.path.join(current_dir, "event_handlers_user")
]
user_event_handlers_paths.extend(
ftrack_settings["ftrack_actions_path"]