diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-08-06 09:10:03 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-08-06 09:10:03 +0000 |
commit | b2e3d600f53d2cfaf8c95a5f646d49ee69a60799 (patch) | |
tree | c40a036007964a38ae6f13db5c7e612a0983a5fd /perl-install | |
parent | 3e6e129302320c48b7a87f9559b83114e418b49c (diff) | |
download | drakx-b2e3d600f53d2cfaf8c95a5f646d49ee69a60799.tar drakx-b2e3d600f53d2cfaf8c95a5f646d49ee69a60799.tar.gz drakx-b2e3d600f53d2cfaf8c95a5f646d49ee69a60799.tar.bz2 drakx-b2e3d600f53d2cfaf8c95a5f646d49ee69a60799.tar.xz drakx-b2e3d600f53d2cfaf8c95a5f646d49ee69a60799.zip |
(bug_handler) drakbug: do not report "wizcancel" exceptions (#32308)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/standalone.pm | 4 |
2 files changed, 3 insertions, 2 deletions
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); } |