diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-08-31 23:31:00 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-08-31 23:31:00 +0000 |
commit | d76aab988d5af06bab7e2ac4c43b5952cc2e377b (patch) | |
tree | e581a9c59f0aa1e6f6c7f29cb22c0a7cfc0faac7 /urpm/signature.pm | |
parent | 3273c0f1586d6b966ceaaf0e5ef5550dc599e4c0 (diff) | |
download | urpmi-d76aab988d5af06bab7e2ac4c43b5952cc2e377b.tar urpmi-d76aab988d5af06bab7e2ac4c43b5952cc2e377b.tar.gz urpmi-d76aab988d5af06bab7e2ac4c43b5952cc2e377b.tar.bz2 urpmi-d76aab988d5af06bab7e2ac4c43b5952cc2e377b.tar.xz urpmi-d76aab988d5af06bab7e2ac4c43b5952cc2e377b.zip |
(_check) remove useless "\n" at end of two messages
Diffstat (limited to 'urpm/signature.pm')
-rw-r--r-- | urpm/signature.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/urpm/signature.pm b/urpm/signature.pm index 95d80f9f..c1bf82c5 100644 --- a/urpm/signature.pm +++ b/urpm/signature.pm @@ -74,13 +74,13 @@ sub _check { if (!$medium) { if ($verif =~ /OK \(\(none\)\)/) { $verif =~ s/\n//g; - $urpm->{info}(N("SECURITY: The following package is _NOT_ signed (%s): %s\n", $verif, $filepath)); + $urpm->{info}(N("SECURITY: The following package is _NOT_ signed (%s): %s", $verif, $filepath)); } next; } #- check whether verify-rpm is specifically disabled for this medium if (defined $medium->{'verify-rpm'} && !$medium->{'verify-rpm'}) { - $urpm->{info}(N("SECURITY: NOT checking package \"%s\" (due to configuration)\n", $filepath)); + $urpm->{info}(N("SECURITY: NOT checking package \"%s\" (due to configuration)", $filepath)); next; } |