crython icon indicating copy to clipboard operation
crython copied to clipboard

crython is not working

Open harimurugesan opened this issue 6 years ago • 1 comments

harimurugesan avatar Feb 14 '19 11:02 harimurugesan

You need to provide more details here. I personally struggled to get started because my job was raising an Exception that was being swallowed:

import crython

@crython.job(expr='@reboot')
def exceptional_job():
    try:
        assert False, 'would be swallowed without the try/catch'
    except Exception as e:
        print(e)
        raise e

crython.start()
crython.join()

micimize avatar Feb 19 '19 21:02 micimize