lp-shell: Disable default apport excepthook, as this is intended for

interactive use.
This commit is contained in:
Colin Watson 2010-02-24 10:41:55 +00:00
parent 16addfa5ff
commit 1005f7d174
2 changed files with 8 additions and 0 deletions

4
debian/changelog vendored
View File

@ -36,6 +36,10 @@ ubuntu-dev-tools (0.93) UNRELEASED; urgency=low
* edit-patch: add wrapper around cdbs-edit-patch, dpatch-edit-patch, quilt
to transparently deal with the various patch systems.
[ Colin Watson ]
* lp-shell: Disable default apport excepthook, as this is intended for
interactive use.
-- Michael Bienia <geser@ubuntu.com> Tue, 23 Feb 2010 00:31:19 +0100
ubuntu-dev-tools (0.92) lucid; urgency=low

View File

@ -25,3 +25,7 @@ else:
instance = EDGE_SERVICE_ROOT
lp = Launchpad.login_with('test', instance)
# Disable default apport hook, as lp-shell is intended for interactive use
# and thus exceptions often bubble up to the top level.
sys.excepthook = sys.__excepthook__