1
0
Fork 0
forked from josch/plakativ

plakativ.py: on windows we have to use sys.exit() instead of exit()

This commit is contained in:
Johannes 'josch' Schauer 2019-07-04 08:28:14 +02:00
parent a26876fb1b
commit 2452e58ac8
Signed by untrusted user: josch
GPG key ID: F2CBA5C78FBD83E1

View file

@ -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))