From 2164a911ae9efe32d437a0931d70dd48ee9f27f2 Mon Sep 17 00:00:00 2001 From: Jakub Trllo Date: Wed, 3 Jul 2019 13:13:46 +0200 Subject: [PATCH] creation date of note in destination ftrack match with source --- pype/ftrack/actions/action_sync_notes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pype/ftrack/actions/action_sync_notes.py b/pype/ftrack/actions/action_sync_notes.py index 40f17e5147..67771762c8 100644 --- a/pype/ftrack/actions/action_sync_notes.py +++ b/pype/ftrack/actions/action_sync_notes.py @@ -147,8 +147,8 @@ class SynchronizeNotes(BaseAction): ) is_reply = True - # TODO Should we change date to match source Ftrack? - # new_note['data'] = src_note['date'] + # QUESTION Should we change date to match source Ftrack? + new_note['date'] = src_note['date'] self.session.commit() new_note_id = new_note['id']