From c3ddb94dc024dd166cd1211a4611d0c0e93de0da Mon Sep 17 00:00:00 2001 From: Stefan Reiter Date: Mon, 9 Dec 2019 16:14:07 +0100 Subject: [PATCH] fix wrong punctuation in error msg ...leading to ugly line info being printed. Signed-off-by: Stefan Reiter --- PVE/API2/Qemu.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/API2/Qemu.pm b/PVE/API2/Qemu.pm index fbf036a..b28373e 100644 --- a/PVE/API2/Qemu.pm +++ b/PVE/API2/Qemu.pm @@ -3378,7 +3378,7 @@ __PACKAGE__->register_method({ if (PVE::QemuServer::check_running($vmid)) { die "can't migrate running VM without --online\n" if !$param->{online}; } else { - warn "VM isn't running. Doing offline migration instead\n." if $param->{online}; + warn "VM isn't running. Doing offline migration instead.\n" if $param->{online}; $param->{online} = 0; } -- 2.39.2