call start in sys.exit(start()) instead of start()

Exceptions are raised by the sys.exit() function.
When they are not handled, no stack traceback
is printed in the Python interpreter.
Therefore, when using sys.exit(start())
instead of start() may be more readable and reasonable.

Change-Id: I8887607264c9ead220e66135dab06c9562f0b531
This commit is contained in:
Janonymous 2016-09-26 10:08:15 +05:30
parent 5214e66f91
commit 368c8c4eed
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ def start():
if __name__ == '__main__':
start()
sys.exit(start())
elif 'UWSGI_ORIGINAL_PROC_NAME' in os.environ:
# The module is being loaded by uWSGI to get the Flask app running under
# it. This allows Neutron to be set, since uWSGI does not run 'start',