This repository has been archived on 2025-06-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
fl0w-old/Shared/Utils.py
2016-03-21 00:09:58 +01:00

6 lines
No EOL
186 B
Python

from traceback import print_exception
from sys import exc_info
def capture_trace():
exc_type, exc_value, exc_traceback = exc_info()
print_exception(exc_type, exc_value, exc_traceback)