summaryrefslogtreecommitdiffstats
path: root/src/Hooks/sitecustomize.py
blob: 1a01574522da09c43cc70bd97ddcc27a5b8f3656 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# ABRT crash hook
#
# This special script is placed in
# /usr/local/lib/pythonNNN/site-packages/sitecustomize.py
# and python interpreter runs it automatically everytime
# some python script is executed.

try:
    from abrt_exception_handler import installExceptionHandler
    installExceptionHandler(debug = 1)
except Exception, e:
    # FIXME: log errors?
    pass