Skip to content

Commit 550f685

Browse files
authored
Merge pull request #2675 from alicevision/fix/cliRecentProjectFiles
Fix Meshroom App CLI `latest` option
2 parents db62f2b + 9f622a2 commit 550f685

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meshroom/ui/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ def __init__(self, inputArgs):
303303
self._activeProject.load(args.project)
304304
self.addRecentProjectFile(args.project)
305305
elif args.latest or args.latest2 or args.latest3:
306-
projects = self._recentProjectFiles()
306+
projects = self._recentProjectFiles
307307
if projects:
308308
index = [args.latest, args.latest2, args.latest3].index(True)
309309
project = os.path.abspath(projects[index]["path"])

0 commit comments

Comments
 (0)