diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-08-24 16:14:01 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-08-24 16:14:01 +0000 |
commit | 5782c384a331ace3efcef84f2340320b5f581481 (patch) | |
tree | fa8795dd5cb150ca4c4519f65922195159dcf870 /urpm/signature.pm | |
parent | 5b02b5c34b591b8db32ba0889c0d6c1e7e0010b2 (diff) | |
download | urpmi-5782c384a331ace3efcef84f2340320b5f581481.tar urpmi-5782c384a331ace3efcef84f2340320b5f581481.tar.gz urpmi-5782c384a331ace3efcef84f2340320b5f581481.tar.bz2 urpmi-5782c384a331ace3efcef84f2340320b5f581481.tar.xz urpmi-5782c384a331ace3efcef84f2340320b5f581481.zip |
perl_checker cleanup
Diffstat (limited to 'urpm/signature.pm')
-rw-r--r-- | urpm/signature.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/signature.pm b/urpm/signature.pm index 7a18985a..f75b9bd6 100644 --- a/urpm/signature.pm +++ b/urpm/signature.pm @@ -31,7 +31,7 @@ sub _check { if ($verif =~ /NOT OK/) { $verif =~ s/\n//g; $invalid_sources{$filepath} = N("Invalid signature (%s)", $verif); - } elsif ($verif =~ /OK \(\(none\)\)/ ) { + } elsif ($verif =~ /OK \(\(none\)\)/) { $verif =~ s/\n//g; $invalid_sources{$filepath} = N("Missing signature (%s)", $verif); } else { |