summaryrefslogtreecommitdiffstats
path: root/perl-install/wizards.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/wizards.pm')
-rw-r--r--perl-install/wizards.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/wizards.pm b/perl-install/wizards.pm
index c5a39c4da..2ae0af4ca 100644
--- a/perl-install/wizards.pm
+++ b/perl-install/wizards.pm
@@ -91,7 +91,7 @@ sub new { bless {}, $_[0] }
sub check_rpm {
my ($in, $rpms) = @_;
foreach my $rpm (@$rpms) {
- next if !$in->do_pkgs->is_installed($rpm);
+ next 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)))) {
$::testing and next;
if (!$in->do_pkgs->install($rpm)) {