mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
Merge branch 'develop' into enhancement/1176-ay-7575_make-instances-in-publisher-mandatory
This commit is contained in:
commit
415b44d7e1
2 changed files with 4 additions and 1 deletions
|
|
@ -2,6 +2,7 @@
|
|||
"""Package for handling AYON command line arguments."""
|
||||
import os
|
||||
import sys
|
||||
import logging
|
||||
import code
|
||||
import traceback
|
||||
from pathlib import Path
|
||||
|
|
@ -306,6 +307,8 @@ def _add_addons(addons_manager):
|
|||
|
||||
|
||||
def main(*args, **kwargs):
|
||||
logging.basicConfig()
|
||||
|
||||
initialize_ayon_connection()
|
||||
python_path = os.getenv("PYTHONPATH", "")
|
||||
split_paths = python_path.split(os.pathsep)
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ class ValidateCurrentSaveFile(pyblish.api.ContextPlugin):
|
|||
label = "Validate File Saved"
|
||||
order = pyblish.api.ValidatorOrder - 0.1
|
||||
hosts = ["fusion", "houdini", "max", "maya", "nuke", "substancepainter",
|
||||
"cinema4d", "silhouette", "gaffer"]
|
||||
"cinema4d", "silhouette", "gaffer", "blender"]
|
||||
actions = [SaveByVersionUpAction, ShowWorkfilesAction]
|
||||
|
||||
def process(self, context):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue