mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Merge pull request #4303 from ynput/bugfix/OP-4679_Issue-Comment-on-Standalone-and-tray-Publisher
General: missing comment on standalone and tray publisher
This commit is contained in:
commit
554c72cdbe
2 changed files with 5 additions and 3 deletions
|
|
@ -129,8 +129,8 @@ class IntegrateFtrackNote(pyblish.api.InstancePlugin):
|
|||
if not note_text.solved:
|
||||
self.log.warning((
|
||||
"Note template require more keys then can be provided."
|
||||
"\nTemplate: {}\nData: {}"
|
||||
).format(template, format_data))
|
||||
"\nTemplate: {}\nMissing values for keys:{}\nData: {}"
|
||||
).format(template, note_text.missing_keys, format_data))
|
||||
continue
|
||||
|
||||
if not note_text:
|
||||
|
|
|
|||
|
|
@ -73,7 +73,9 @@ class CollectComment(
|
|||
"""
|
||||
|
||||
label = "Collect Instance Comment"
|
||||
order = pyblish.api.CollectorOrder + 0.49
|
||||
# TODO change to CollectorOrder after Pyblish is purged
|
||||
# Pyblish allows modifying comment after collect phase
|
||||
order = pyblish.api.ExtractorOrder - 0.49
|
||||
|
||||
def process(self, context):
|
||||
context_comment = self.cleanup_comment(context.data.get("comment"))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue