summaryrefslogtreecommitdiffstats
path: root/_deploy/debian/sitecustomize.py
diff options
context:
space:
mode:
Diffstat (limited to '_deploy/debian/sitecustomize.py')
-rw-r--r--_deploy/debian/sitecustomize.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/_deploy/debian/sitecustomize.py b/_deploy/debian/sitecustomize.py
new file mode 100644
index 0000000..89c6712
--- /dev/null
+++ b/_deploy/debian/sitecustomize.py
@@ -0,0 +1,7 @@
+# install the apport exception handler if available
+try:
+ import apport_python_hook
+except ImportError:
+ pass
+else:
+ apport_python_hook.install()