aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-02-07 21:22:11 +0000
committerThierry Vignaud <tv@mageia.org>2012-02-07 21:22:11 +0000
commitb276471734a5aa247418c0700e2eb827ed517e61 (patch)
tree5b237f0071f9bbc7318c7c1608725a19c3827bfb
parent4b4a87ddcdd27943f1571ec1167d038752aaece3 (diff)
downloadrpmdrake-b276471734a5aa247418c0700e2eb827ed517e61.tar
rpmdrake-b276471734a5aa247418c0700e2eb827ed517e61.tar.gz
rpmdrake-b276471734a5aa247418c0700e2eb827ed517e61.tar.bz2
rpmdrake-b276471734a5aa247418c0700e2eb827ed517e61.tar.xz
rpmdrake-b276471734a5aa247418c0700e2eb827ed517e61.zip
fix spacing
-rw-r--r--Rpmdrake/formatting.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rpmdrake/formatting.pm b/Rpmdrake/formatting.pm
index 12e0228a..2bdfc67a 100644
--- a/Rpmdrake/formatting.pm
+++ b/Rpmdrake/formatting.pm
@@ -165,7 +165,7 @@ sub format_size {
$size >= 0 ?
N("%s of additional disk space will be used.", formatXiB($size)) :
N("%s of disk space will be freed.", formatXiB(-$size));
- }
+}
sub format_list { join("\n", map { s/^(\s)/ $1/mg; "- $_" } sort { uc($a) cmp uc($b) } @_) }