Commit a7c82113 authored by Reinout van Rees's avatar Reinout van Rees

Simply re-raising SystemExit works, too

parent ed5b355e
......@@ -1810,8 +1810,7 @@ def main(args=None):
logging.shutdown()
# Make sure we properly propagate an exit code from a restarted
# buildout process.
exit_code = sys.exc_info()[1]
sys.exit(exit_code)
raise
except Exception:
v = sys.exc_info()[1]
_doing()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment