From 6608974521b4765965a6398001b19a65f2a25f2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Candice=20Bent=C3=A9jac?= Date: Thu, 2 Oct 2025 09:58:16 +0200 Subject: [PATCH] [meshroom] `CameraInit`: Remove `_cmdVars` `_cmdVars` does not exist anymore and `node.internalFolder` now contains the resolved path. There is thus no need to format it anymore. --- meshroom/aliceVision/CameraInit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshroom/aliceVision/CameraInit.py b/meshroom/aliceVision/CameraInit.py index 0ea928d9ec..3a153a56e5 100644 --- a/meshroom/aliceVision/CameraInit.py +++ b/meshroom/aliceVision/CameraInit.py @@ -671,7 +671,7 @@ def createViewpointsFile(self, node, additionalViews=()): "featureFolder": "", "matchingFolder": "", } - node.viewpointsFile = os.path.join(node.internalFolder, 'viewpoints.sfm').format(**node._cmdVars) + node.viewpointsFile = os.path.join(node.internalFolder, 'viewpoints.sfm') with open(node.viewpointsFile, 'w') as f: json.dump(sfmData, f, indent=4)