Merge "move sys.exit out of try finally block in set_config.py file"

This commit is contained in:
Jenkins 2016-10-17 20:53:03 +00:00 committed by Gerrit Code Review
commit 53bc43b20b

View File

@ -305,5 +305,4 @@ if __name__ == "__main__":
except Exception: except Exception:
exit_code = 1 exit_code = 1
LOG.exception('Unexpected error:') LOG.exception('Unexpected error:')
finally: sys.exit(exit_code)
sys.exit(exit_code)