aboutsummaryrefslogtreecommitdiff
path: root/examples/python2.7/sitecustomize.py
blob: 89c671205842f50be2e5cbeeb5d1fa4c6aaec216 (plain)
1
2
3
4
5
6
7
# install the apport exception handler if available
try:
    import apport_python_hook
except ImportError:
    pass
else:
    apport_python_hook.install()