From 43b3b5af980610fe0eadb73b3e189ea9416f491a Mon Sep 17 00:00:00 2001 From: wolfgangp <4672890+wolfgangp@users.noreply.github.com> Date: Fri, 9 Apr 2021 13:47:33 +0200 Subject: [PATCH] [bin] Use sys.exit (#1312) --- 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)