forked from josch/plakativ
plakativ.py: on windows we have to use sys.exit() instead of exit()
This commit is contained in:
parent
a26876fb1b
commit
2452e58ac8
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
||||
|
|
Loading…
Reference in a new issue