From b2e3d600f53d2cfaf8c95a5f646d49ee69a60799 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 6 Aug 2007 09:10:03 +0000 Subject: (bug_handler) drakbug: do not report "wizcancel" exceptions (#32308) --- perl-install/NEWS | 1 + perl-install/standalone.pm | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'perl-install') diff --git a/perl-install/NEWS b/perl-install/NEWS index 9a20e8838..5dfff46cd 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,5 +1,6 @@ - diskdrake: o allow setting "flush" option (for vfat) +- drakbug: do not report "wizcancel" exceptions (#32308) Version 10.4.157 - 03 August 2007, by Thierry Vignaud diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm index 7e86c1d7a..c20381911 100644 --- a/perl-install/standalone.pm +++ b/perl-install/standalone.pm @@ -194,8 +194,8 @@ sub bug_handler { # we want the full backtrace: $error .= common::backtrace() if $error; my $progname = $0; - # do not loop if drakbug crashes: - if ($progname =~ /drakbug/) { + # do not loop if drakbug crashes and do not complain about wizcancel: + if ($progname =~ /drakbug/ || $error =~ /wizcancel/) { warn $error; exit(1); } -- cgit v1.2.1