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."""
|
"""Package for handling AYON command line arguments."""
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
import logging
|
||||||
import code
|
import code
|
||||||
import traceback
|
import traceback
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
@ -306,6 +307,8 @@ def _add_addons(addons_manager):
|
||||||
|
|
||||||
|
|
||||||
def main(*args, **kwargs):
|
def main(*args, **kwargs):
|
||||||
|
logging.basicConfig()
|
||||||
|
|
||||||
initialize_ayon_connection()
|
initialize_ayon_connection()
|
||||||
python_path = os.getenv("PYTHONPATH", "")
|
python_path = os.getenv("PYTHONPATH", "")
|
||||||
split_paths = python_path.split(os.pathsep)
|
split_paths = python_path.split(os.pathsep)
|
||||||
|
|
|
||||||
|
|
@ -37,7 +37,7 @@ class ValidateCurrentSaveFile(pyblish.api.ContextPlugin):
|
||||||
label = "Validate File Saved"
|
label = "Validate File Saved"
|
||||||
order = pyblish.api.ValidatorOrder - 0.1
|
order = pyblish.api.ValidatorOrder - 0.1
|
||||||
hosts = ["fusion", "houdini", "max", "maya", "nuke", "substancepainter",
|
hosts = ["fusion", "houdini", "max", "maya", "nuke", "substancepainter",
|
||||||
"cinema4d", "silhouette", "gaffer"]
|
"cinema4d", "silhouette", "gaffer", "blender"]
|
||||||
actions = [SaveByVersionUpAction, ShowWorkfilesAction]
|
actions = [SaveByVersionUpAction, ShowWorkfilesAction]
|
||||||
|
|
||||||
def process(self, context):
|
def process(self, context):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue