From 2452e58ac8b5962e9dcc4514e3c31e11f936286d Mon Sep 17 00:00:00 2001 From: Johannes 'josch' Schauer Date: Thu, 4 Jul 2019 08:28:14 +0200 Subject: [PATCH] plakativ.py: on windows we have to use sys.exit() instead of exit() --- plakativ.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plakativ.py b/plakativ.py index 7f05543..ed3ea58 100644 --- a/plakativ.py +++ b/plakativ.py @@ -1305,7 +1305,7 @@ def main(): if args.gui: gui() - exit(0) + sys.exit(0) compute_layout(args.input, args.output, mode=args.mode, size=(297, 420))