mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 05:42:15 +01:00
Revert redundant variable name change since plugin is now basically reverted
This commit is contained in:
parent
c43a8b0732
commit
f6b8a8df61
1 changed files with 4 additions and 4 deletions
|
|
@ -13,10 +13,10 @@ class CollectCurrentCompFusion(pyblish.api.ContextPlugin):
|
|||
def process(self, context):
|
||||
"""Collect all image sequence tools"""
|
||||
|
||||
comp = get_current_comp()
|
||||
assert comp, "Must have active Fusion composition"
|
||||
context.data["currentComp"] = comp
|
||||
current_comp = get_current_comp()
|
||||
assert current_comp, "Must have active Fusion composition"
|
||||
context.data["currentComp"] = current_comp
|
||||
|
||||
# Store path to current file
|
||||
filepath = comp.GetAttrs().get("COMPS_FileName", "")
|
||||
filepath = current_comp.GetAttrs().get("COMPS_FileName", "")
|
||||
context.data['currentFile'] = filepath
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue