diff --git a/pype/plugins/adobecommunicator/publish/collect_context.py b/pype/plugins/adobecommunicator/publish/collect_context.py index 86e8ae3fe8..7759fbd6df 100644 --- a/pype/plugins/adobecommunicator/publish/collect_context.py +++ b/pype/plugins/adobecommunicator/publish/collect_context.py @@ -67,7 +67,7 @@ class CollectContextDataFromAport(pyblish.api.ContextPlugin): # get current file current_file = json_data.get("currentFile", None) assert current_file, "No `currentFile` data in json file" - context.data["currentFile"] = Path(current_file).resolve() + context.data["currentFile"] = str(Path(current_file).resolve()) # get project data from avalon project_data = io.find_one({'type': 'project'})