summaryrefslogtreecommitdiffstats
path: root/urpme
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-03-27 17:15:23 +0000
committerThierry Vignaud <tv@mageia.org>2012-03-27 17:15:23 +0000
commit6aaf7d1e438b9820164b94d3b548a858bb6abf68 (patch)
tree3634d28f369060cb1f2e452b8a6c32a077e14cda /urpme
parent6b1205316bc4f4f521ed6ba6649dbfd2167a2f63 (diff)
downloadurpmi-6aaf7d1e438b9820164b94d3b548a858bb6abf68.tar
urpmi-6aaf7d1e438b9820164b94d3b548a858bb6abf68.tar.gz
urpmi-6aaf7d1e438b9820164b94d3b548a858bb6abf68.tar.bz2
urpmi-6aaf7d1e438b9820164b94d3b548a858bb6abf68.tar.xz
urpmi-6aaf7d1e438b9820164b94d3b548a858bb6abf68.zip
perl_checker cleanups
Diffstat (limited to 'urpme')
-rwxr-xr-xurpme4
1 files changed, 2 insertions, 2 deletions
diff --git a/urpme b/urpme
index 95485e39..e7f4bb9e 100755
--- a/urpme
+++ b/urpme
@@ -163,10 +163,10 @@ if ($urpm->{options}{auto} || $env) {
$force || message_input_(P("Remove %d package?", "Remove %d packages?", scalar(@toremove), scalar(@toremove)) . N(" (y/N) "), boolean => 1) =~ /[$yesexpr]/ or exit 0;
}
-print $test ?
+print($test ?
#- Warning : the following message is parsed in urpm::parallel_*
N("testing removal of %s", join(' ', sort @toremove)) :
- N("removing %s", join(' ', sort @toremove)), "\n";
+ N("removing %s", join(' ', sort @toremove)), "\n");
exit 0 if $env;