Use SystemExit instead of sys.exit, like my other programs.
This commit is contained in:
parent
4890129360
commit
eb3698637f
1 changed files with 1 additions and 1 deletions
|
@ -129,4 +129,4 @@ def main(args=None):
|
||||||
pipeable.output(bytestring(n))
|
pipeable.output(bytestring(n))
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
sys.exit(main(sys.argv[1:]))
|
raise SystemExit(main(sys.argv[1:]))
|
||||||
|
|
Loading…
Reference in a new issue