Remove superfluous else/exit

Artifact from when I was trying to catch SystemExit more elaborately, in
order to fall back on Python when our C can't compile.
This commit is contained in:
Elliot Nunn 2019-05-05 21:34:43 +08:00
parent 81979079c6
commit 5ee529ece3

View File

@ -29,5 +29,3 @@ try:
except (SystemExit, Exception):
setup_args.pop('ext_modules')
setup(**setup_args)
else:
exit()