def decorator(*args, **kwargs): try: return f(*args, **kwargs) except Exception: var = traceback.format_exc() return error(var)