ID 555826 - hiero.core.Tag.setNote() no longer works

Follow

Problem summary
Using setNote() from hiero.core.Tag in NukeStudio does not print a result
 
Customer reported version
Hiero 14.0v6
 
Customer reported platform
CentOS 7
 
Steps to reproduce
 
1) Open Nuke Studio 14.0v6

2) Open the Window file menu and select the Script Editor

3) Enter the following code into the Script Editor and press CTRL+Enter
 

import hiero.coretag = hiero.core.Tag("TestTag")tag.setNote("note")print(tag.note())
 
Expected behaviour
For the result to display "note"
 
Actual behaviour
The result displays nothing
 
Workaround
Using the following code helps resolve the issue
 
import hiero.coretag = hiero.core.Tag("TestTag")tag.metadata().setValue("tag.note", "note")print(tag.note())
 
Reproduced by support
This bug has been reproduced in:
NukeStudio 14.0v6 - Windows 10 - macOS 13.6 - CentOS 7
 
Unable to reproduce bug in:
NukeStudio 14.0v5 - Windows 10 - macOS 13.6 - CentOS 7 - Regression
 
Earliest version tested
NukeStudio 14.0v5 - This issue doesn't appear in this version and has regressed
 
 

    We're sorry to hear that

    Please tell us why