summaryrefslogtreecommitdiff
path: root/python2.7/sitecustomize.py
diff options
context:
space:
mode:
authorIgor Pashev <igor.pashev@nexenta.com>2012-12-26 17:42:56 +0400
committerIgor Pashev <igor.pashev@nexenta.com>2012-12-26 17:42:56 +0400
commit51f8f145f5149fb365e605630803ea5a89cfc63b (patch)
tree6626acc5735a3b0b131e7794bb84d55a369b0989 /python2.7/sitecustomize.py
parent86842e35c6df12e14a0b1868ff3238879a6120fc (diff)
downloadcibs-pkgs-51f8f145f5149fb365e605630803ea5a89cfc63b.tar.gz
Python 2.7 minimal (needs more work)
Diffstat (limited to 'python2.7/sitecustomize.py')
-rw-r--r--python2.7/sitecustomize.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/python2.7/sitecustomize.py b/python2.7/sitecustomize.py
new file mode 100644
index 0000000..89c6712
--- /dev/null
+++ b/python2.7/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()