blob: 963620e5f8e0c740eaac9c0dd492813bc003d6f1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# The following is from
# /usr/lib/python2.6/sitecustomize.py
# install the apport exception handler if available
try:
import apport_python_hook
except ImportError:
pass
else:
apport_python_hook.install()
|