mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 21:32:15 +01:00
Merge branch '2.0/bugfix/PYPE-287-chase-old-dependencies' into 2.0/develop
This commit is contained in:
commit
30d600b894
2 changed files with 5 additions and 5 deletions
|
|
@ -190,7 +190,7 @@ class AppAction(BaseHandler):
|
|||
os.environ["AVALON_APP"] = self.identifier.split("_")[0]
|
||||
os.environ["AVALON_APP_NAME"] = self.identifier
|
||||
|
||||
anatomy = Anatomy(project_name=project_name)
|
||||
anatomy = Anatomy()
|
||||
|
||||
hierarchy = ""
|
||||
parents = database[project_name].find_one({
|
||||
|
|
|
|||
|
|
@ -430,11 +430,11 @@ def get_avalon_project_template():
|
|||
Returns:
|
||||
dictionary with templates
|
||||
"""
|
||||
anatomy = Anatomy(project_name=os.environ.get('AVALON_PROJECT')).anatomy
|
||||
templates = Anatomy().templates
|
||||
proj_template = {}
|
||||
proj_template['workfile'] = anatomy["avalon"]["workfile"]
|
||||
proj_template['work'] = anatomy["avalon"]["work"]
|
||||
proj_template['publish'] = anatomy["avalon"]["publish"]
|
||||
proj_template['workfile'] = templates["avalon"]["workfile"]
|
||||
proj_template['work'] = templates["avalon"]["work"]
|
||||
proj_template['publish'] = templates["avalon"]["publish"]
|
||||
return proj_template
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue