DEBSOURCES
Skip Quicknav
sources / trash-cli / 0.24.5.26-0.3 / tests / support / capture_error.py
123456
def capture_error(callable): try: callable() except Exception as e: return e return None