diff --git a/client/ayon_ftrack/plugins/publish/integrate_ftrack_note.py b/client/ayon_ftrack/plugins/publish/integrate_ftrack_note.py index 75eeb458..7584fc4c 100644 --- a/client/ayon_ftrack/plugins/publish/integrate_ftrack_note.py +++ b/client/ayon_ftrack/plugins/publish/integrate_ftrack_note.py @@ -31,7 +31,7 @@ class IntegrateFtrackNote(plugin.FtrackPublishInstancePlugin): # - Allows only `intent` and `comment` keys note_template = None # Backwards compatibility - note_with_intent_template = "{intent}: {comment}" + note_with_intent_template = "{comment}" # - note label must exist in Ftrack note_labels = [] diff --git a/server/settings/publish_plugins.py b/server/settings/publish_plugins.py index 6ea6b69b..1f9e0307 100644 --- a/server/settings/publish_plugins.py +++ b/server/settings/publish_plugins.py @@ -597,7 +597,7 @@ class FtrackPublishPlugins(BaseSettingsModel): }, "IntegrateFtrackNote": { "enabled": True, - "note_template": "{intent}: {comment}", + "note_template": "{comment}", "note_labels": [] }, "IntegrateFtrackDescription": {