From 0430101380bcb46f4c4347135b014e2b7e3d3752 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Thu, 27 Jul 2017 14:17:02 +0200 Subject: [PATCH] pvesm: remove superfluous space after N/A --- PVE/CLI/pvesm.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/CLI/pvesm.pm b/PVE/CLI/pvesm.pm index ec6d865..9455595 100755 --- a/PVE/CLI/pvesm.pm +++ b/PVE/CLI/pvesm.pm @@ -146,7 +146,7 @@ my $print_status = sub { $per = ($res->{used}*100)/$res->{total} if $res->{total} > 0; if (!$res->{enabled}) { - $per = 'N/A '; + $per = 'N/A'; $per_fmt = '% 8s'; $active = 'disabled'; }