Package: gimmie
Version: 0.2.7-1
Severity: normal
Tags: patch
Hi,
Attached is the diff for my gimmie 0.2.7-1.1 NMU.
The idea is to disable the custom exception hook gimmie sets, so
exceptions are handled the normal way and won't cause the program
to stop.
Regards,
Fredeic
diff -u gimmie-0.2.7/debian/changelog gimmie-0.2.7/debian/changelog
--- gimmie-0.2.7/debian/changelog
+++ gimmie-0.2.7/debian/changelog
@@ -1,3 +1,12 @@
+gimmie (0.2.7-1.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * gimmie/gimmie.in: disabled custom exception hook so the program is not
+ aborted on exceptions that wouldn't cause PyGTK problems otherwise.
+ (closes: #435164, #435189, #435196)
+
+ -- Frederic Peters <[EMAIL PROTECTED]> Sat, 29 Sep 2007 00:49:14 +0200
+
gimmie (0.2.7-1) unstable; urgency=low
* Initial release (Closes: #415937)
only in patch2:
unchanged:
--- gimmie-0.2.7.orig/gimmie/gimmie.in
+++ gimmie-0.2.7/gimmie/gimmie.in
@@ -44,7 +44,7 @@
finally:
os.unlink(name)
raise SystemExit
-sys.excepthook = bug_catcher
+#sys.excepthook = bug_catcher
pwd, dirname = os.path.split(os.path.dirname(os.path.abspath(__file__)))