From 4b6051485e63c0ca4d28b7c32917b4e019d9560d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= Date: Mon, 9 Dec 2024 11:56:46 +0100 Subject: [PATCH] api: fix another non-ascii comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit replace a UTF-8 en-dash with a regular hyphen. Signed-off-by: Fabian Grünbichler --- 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 6e35c46f..9d1127c0 100644 --- a/PVE/API2/Qemu.pm +++ b/PVE/API2/Qemu.pm @@ -4042,7 +4042,7 @@ __PACKAGE__->register_method({ if ($target) { if (!$running) { - # always deactivate volumes – avoids that LVM LVs are active on several nodes + # always deactivate volumes - avoids that LVM LVs are active on several nodes eval { PVE::Storage::deactivate_volumes($storecfg, $vollist, $snapname) }; # but only warn when that fails (e.g., parallel clones keeping them active) log_warn($@) if $@;