diff --git a/openpype/modules/kitsu/kitsu_module.py b/openpype/modules/kitsu/kitsu_module.py index 8e7ab6f78c..d19d14dda7 100644 --- a/openpype/modules/kitsu/kitsu_module.py +++ b/openpype/modules/kitsu/kitsu_module.py @@ -129,8 +129,8 @@ def sync_service(login, password): login (str): Kitsu user login password (str): Kitsu user password """ - from .utils.update_op_with_zou import sync_all_project + from .utils.update_op_with_zou import sync_all_projects from .utils.sync_service import start_listeners - sync_all_project(login, password) + sync_all_projects(login, password) start_listeners(login, password) diff --git a/openpype/modules/kitsu/utils/update_op_with_zou.py b/openpype/modules/kitsu/utils/update_op_with_zou.py index 08e50d959b..cd98c0d204 100644 --- a/openpype/modules/kitsu/utils/update_op_with_zou.py +++ b/openpype/modules/kitsu/utils/update_op_with_zou.py @@ -250,7 +250,7 @@ def write_project_to_op(project: dict, dbcon: AvalonMongoDB) -> UpdateOne: ) -def sync_all_project(login: str, password: str): +def sync_all_projects(login: str, password: str): """Update all OP projects in DB with Zou data. Args: