We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 554fa3f commit 98889c6Copy full SHA for 98889c6
meshroom/core/attribute.py
@@ -195,7 +195,12 @@ def _applyExpr(self):
195
elif self.isInput and Attribute.isLinkExpression(v):
196
# value is a link to another attribute
197
link = v[1:-1]
198
- linkNodeName, linkAttrName = link.split('.')
+ linkNodeName, linkAttrName = "", ""
199
+ try:
200
+ linkNodeName, linkAttrName = link.split('.')
201
+ except ValueError as err:
202
+ logging.warning('Retrieve Connected Attribute from Expression failed.')
203
+ logging.warning(f'Expression: "{link}"\nError: "{err}".')
204
try:
205
node = g.node(linkNodeName)
206
if not node:
0 commit comments