This paste expires on 2023-06-24 12:51:21.035965. Repaste, or download this paste. . Pasted through web.

import sys
def main(argv=None):
    try:
        return do_a_thing()
    except Exception as e:
        log_an_error(e)
        return str(e)
if __name__ == "__main__":
    sys.exit(main(sys.argv[1:]))
Filename: None. Size: 213b. View raw, , hex, or download this file.