Files
stable-diffusion-webui/modules/errors.py
2022-09-12 16:34:13 +03:00

11 lines
229 B
Python

import sys
import traceback
def run(code, task):
try:
code()
except Exception as e:
print(f"{task}: {type(e).__name__}", file=sys.stderr)
print(traceback.format_exc(), file=sys.stderr)