check_dependencies() now uses sys.exit() instead of exit()

This commit is contained in:
Kjistóf 2017-10-30 14:58:22 +01:00
parent 831a1a17dc
commit 2d9cc21dda

View File

@ -2,6 +2,7 @@ from functools import wraps
from tempfile import mkdtemp from tempfile import mkdtemp
from shutil import rmtree from shutil import rmtree
from subprocess import check_output, CalledProcessError from subprocess import check_output, CalledProcessError
from sys import exit
VERBOSE = True VERBOSE = True