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 6bbc93b commit c95c257Copy full SHA for c95c257
meshroom/core/attribute.py
@@ -194,7 +194,12 @@ def _applyExpr(self):
194
elif self.isInput and Attribute.isLinkExpression(v):
195
# value is a link to another attribute
196
link = v[1:-1]
197
- linkNodeName, linkAttrName = link.split('.')
+ linkNodeName, linkAttrName = "", ""
198
+ try:
199
+ linkNodeName, linkAttrName = link.split('.')
200
+ except ValueError as err:
201
+ logging.warning('Retrieve Connected Attribute from Expression failed.')
202
+ logging.warning(f'Expression: "{link}"\nError: "{err}".')
203
try:
204
node = g.node(linkNodeName)
205
if not node:
0 commit comments