Using sys.exit(main()) instead of main()

As we known, Exceptions are raised by the sys.exit() function.
When they are not handled, no stack traceback is printed in the Python interpreter.

In this patch we have known main() got return values(eg:0, 1), but it can't
specifies exit status when terminate the main thread by unusing sys.exit().
So when using sys.exit(main()) instead of main() may be more readable and
reasonable.

Change-Id: I6b472e0eb2fceb49bb506785f5188e023e1d3968
(cherry picked from commit 675eb6abaf)
This commit is contained in:
gecong1973 2016-12-28 14:35:04 +08:00 committed by Oleksiy Molchanov
parent 9526f477d8
commit 5e78a69966
1 changed files with 1 additions and 1 deletions

View File

@ -147,4 +147,4 @@ def main(actions=None):
if __name__ == '__main__':
main()
sys.exit(main())