Skip to content

Commit 4fab573

Browse files
authored
Merge pull request #2144 from alicevision/fix/sfmAlignment
[meshroom] Fix output filename in `SfMAlignment`
2 parents fd67bd0 + 97004b3 commit 4fab573

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

meshroom/aliceVision/SfMAlignment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ class SfMAlignment(desc.AVCommandLineNode):
106106
name="output",
107107
label="SfMData File",
108108
description="Output SfMData file.",
109-
value=lambda attr: "{nodeCacheFolder}/" + (os.path.splitext(os.path.basename(attr.node.input.value))[0] or "sfmData") + "usda",
109+
value=lambda attr: "{nodeCacheFolder}/" + (os.path.splitext(os.path.basename(attr.node.input.value))[0] or "sfmData") + ".usda",
110110
),
111111
desc.File(
112112
name="outputViewsAndPoses",

0 commit comments

Comments
 (0)