From d93817829870e2daddcc5d9bd6b86a680b771347 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Wed, 2 Jun 2021 14:19:53 +0200 Subject: [PATCH] disks: fixup join usage Signed-off-by: Thomas Lamprecht --- PVE/Diskmanage.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/Diskmanage.pm b/PVE/Diskmanage.pm index 6db5279..55da2e5 100644 --- a/PVE/Diskmanage.pm +++ b/PVE/Diskmanage.pm @@ -916,7 +916,7 @@ sub wipe_blockdev { }); if (scalar($to_wipe->$#*) > 0) { - print "found child partitions to wipe: ". join($to_wipe->@*, ',') ."\n"; + print "found child partitions to wipe: ". join(', ', $to_wipe->@*) ."\n"; } push $to_wipe->@*, $devpath; # put actual device last