From 21463b9a04c8a8ab2387d2148c7a1e9305c92710 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= Date: Thu, 1 Jun 2017 11:40:06 +0200 Subject: [PATCH] import disk: add \n to die --- PVE/QemuServer/ImportDisk.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/QemuServer/ImportDisk.pm b/PVE/QemuServer/ImportDisk.pm index e8e83b34..edbc20e9 100755 --- a/PVE/QemuServer/ImportDisk.pm +++ b/PVE/QemuServer/ImportDisk.pm @@ -52,7 +52,7 @@ sub do_import { if ($drive_name) { # should never happen as setting $drive_name is not exposed to public interface - die "cowardly refusing to overwrite existing entry: $drive_name" if $vm_conf->{$drive_name}; + die "cowardly refusing to overwrite existing entry: $drive_name\n" if $vm_conf->{$drive_name}; my $modified = {}; # record what $option we modify $modified->{$drive_name} = 1;