From 89b10ced3b511b51767353a533e6bd74b4ce229b Mon Sep 17 00:00:00 2001 From: wolfgangp <4672890+wolfgangp@users.noreply.github.com> Date: Tue, 2 Mar 2021 05:08:42 +0100 Subject: [PATCH] Fix NameError --- bin/meshroom_batch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/meshroom_batch b/bin/meshroom_batch index 37114d4d4f..0665009efe 100644 --- a/bin/meshroom_batch +++ b/bin/meshroom_batch @@ -104,7 +104,7 @@ if args.inputRecursive: if hasSearchedForImages and not filesByType.images: print("No image found") - exit(-1) + sys.exit(-1) graph = multiview.Graph(name=args.pipeline)