Remove python-deps leftovers

This commit is contained in:
JoeLametta
2016-09-19 11:40:15 +02:00
parent 67ea220604
commit 183cd1b397
2 changed files with 3 additions and 10 deletions

View File

@@ -30,14 +30,9 @@ and assure it doesn't raise an exception.
sys.exit(1)
# now load the main function
h = None
try:
from morituri.rip import main
sys.exit(main.main(sys.argv[1:]))
except ImportError, e:
if not h:
# we couldn't even import deps, so reraise
raise
h.handleImportError(e)
sys.exit(1)
raise ImportError(e)