From f2a39d5c12d9c2719b85356f8c4d3990d17e3781 Mon Sep 17 00:00:00 2001 From: aardschok Date: Fri, 23 Jun 2017 18:08:24 +0200 Subject: [PATCH] fixed bug in collect_current_file --- colorbleed/plugins/maya/publish/collect_current_file.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colorbleed/plugins/maya/publish/collect_current_file.py b/colorbleed/plugins/maya/publish/collect_current_file.py index 305116fb2d..537f7afa0f 100644 --- a/colorbleed/plugins/maya/publish/collect_current_file.py +++ b/colorbleed/plugins/maya/publish/collect_current_file.py @@ -15,4 +15,4 @@ class CollectMayaCurrentFile(pyblish.api.ContextPlugin): def process(self, context): """Inject the current working file""" current_file = cmds.file(query=True, sceneName=True) - context.data['currentFile'] = os.path.normpath(current_file) + context.data['currentFile'] = current_file