diff options
author | Antoine Ginies <aginies@mandriva.com> | 2005-09-07 09:21:41 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2005-09-07 09:21:41 +0000 |
commit | 3930a5796f7786004be243cbafb5d37d9442f8ec (patch) | |
tree | 5ee17f34d0f46178ff2486bce92737cd64e516c9 | |
parent | 747de9d155249ec1b5058347f32cfe77e40dd548 (diff) | |
download | drakwizard-3930a5796f7786004be243cbafb5d37d9442f8ec.tar drakwizard-3930a5796f7786004be243cbafb5d37d9442f8ec.tar.gz drakwizard-3930a5796f7786004be243cbafb5d37d9442f8ec.tar.bz2 drakwizard-3930a5796f7786004be243cbafb5d37d9442f8ec.tar.xz drakwizard-3930a5796f7786004be243cbafb5d37d9442f8ec.zip |
remove error string (if rpm not installed)
-rwxr-xr-x | drakwizard.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drakwizard.pl b/drakwizard.pl index 3e2dc0d0..8e9757b4 100755 --- a/drakwizard.pl +++ b/drakwizard.pl @@ -161,7 +161,7 @@ sub check_rpm_local { my ($rpms) = @_; foreach my $rpm (@$rpms) { if (!$in->do_pkgs->is_installed($rpm)) { - if ($in->ask_okcancel(N("Error"), N("%s is not installed\nClick \"Next\" to install or \"Cancel\" to quit", c::from_utf8($rpm)))) { + if ($in->ask_okcancel(N(""), N("%s is not installed\nClick \"Next\" to install or \"Cancel\" to quit", c::from_utf8($rpm)))) { $::testing and next; if (!$in->do_pkgs->install($rpm)) { $::Wizard_finished = 1; |