From 60aeee5fb1f663336754c382361a05b6de119d78 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Sat, 24 Oct 2020 16:56:54 +0200 Subject: [PATCH] print snapshot tree: reduce indentation Signed-off-by: Thomas Lamprecht --- PVE/GuestHelpers.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/GuestHelpers.pm b/PVE/GuestHelpers.pm index dd44344..970c460 100644 --- a/PVE/GuestHelpers.pm +++ b/PVE/GuestHelpers.pm @@ -160,7 +160,7 @@ sub print_snapshot_tree { printf("%s %-${len}s %-23s %s\n", $prefix, $root, $timestring, $description); if ($e->{children}) { - $prefix = " $prefix"; + $prefix = " $prefix"; foreach my $child (sort $snaptimesort @{$e->{children}}) { $snapshottree_weak->($prefix, $child, $snapshots); }