Mnt/sysexit
I can't think of a reason why I was catching SystemExit
- this was causing strange behaviour where fsl_get_standard -V
would emit:
0.1.1
0
The trailing 0
was emitted by the print(e, file=sys.stderr)
line, where e
was a SystemExit
instance with its return code set to 0.
Edited by Paul McCarthy