Skip to content

Commit

Permalink
[scripts] addMicmacNode: Fix output uid regex
Browse files Browse the repository at this point in the history
  • Loading branch information
gregoire-dl committed Jul 20, 2023
1 parent 6076d66 commit 4057430
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/addMicmacNode.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def convertToLabel(name):
else:
inputNodeStr += argStr

outputNodeStr = re.sub('(uid=[0])', lambda m: 'uid=[]', outputNodeStr) # remove uid for output parameters
outputNodeStr = re.sub('(uid=\[0\])', lambda m: 'uid=[]', outputNodeStr) # remove uid for output parameters

fileStr = '''__version__ = "0.0"
Expand Down

0 comments on commit 4057430

Please sign in to comment.