diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-07-02 17:44:06 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-07-02 17:44:06 +0000 |
commit | 5c4c93817a7e059c87253f6e8a241e3d8c71fdcd (patch) | |
tree | 2e362a6b0005003892f9b61842df579b28bd6e92 /urpme | |
parent | f559454ba384c3905e1d40cff739ad7bd70526e6 (diff) | |
download | urpmi-5c4c93817a7e059c87253f6e8a241e3d8c71fdcd.tar urpmi-5c4c93817a7e059c87253f6e8a241e3d8c71fdcd.tar.gz urpmi-5c4c93817a7e059c87253f6e8a241e3d8c71fdcd.tar.bz2 urpmi-5c4c93817a7e059c87253f6e8a241e3d8c71fdcd.tar.xz urpmi-5c4c93817a7e059c87253f6e8a241e3d8c71fdcd.zip |
- urpme:
o indent the list of packages to be removed
Diffstat (limited to 'urpme')
-rw-r--r-- | urpme | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -125,7 +125,7 @@ my $msg = "To satisfy dependencies, the following %d packages will be removed", scalar(@toremove), scalar(@toremove)) . sprintf(" (%s)", formatXiB(-$urpm->selected_size($state))) . ":\n" - . urpm::select::translate_why_removed($urpm, $state, @toremove) . "\n"; + . add_leading_spaces(urpm::select::translate_why_removed($urpm, $state, @toremove)) . "\n"; if ($options{auto}) { $test and print STDOUT $msg; @@ -156,3 +156,9 @@ if (@errors) { #- Warning : the following message is parsed in urpm::parallel_* $urpm->{fatal}(2, N("Removal failed") . ":\n" . join("\n", map { "\t$_" } @errors)); } + +sub add_leading_spaces { + my ($s) = @_; + $s =~ s/^/ /gm; + $s; +} |