From: Fabian Grünbichler Date: Wed, 17 Nov 2021 12:52:19 +0000 (+0100) Subject: fix use statement X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=1c87d3447c0cb0c4e3278c4574b33146d132de31;p=pve-manager.git fix use statement else this happens: "Use of inherited AUTOLOAD for non-method PVE::API2::Backup::uuid() is no longer allowed at /usr/share/perl5/PVE/API2/Backup.pm line 198. (500)" Signed-off-by: Fabian Grünbichler --- diff --git a/PVE/API2/Backup.pm b/PVE/API2/Backup.pm index 9bddb4d1..3b1d5299 100644 --- a/PVE/API2/Backup.pm +++ b/PVE/API2/Backup.pm @@ -3,7 +3,7 @@ package PVE::API2::Backup; use strict; use warnings; use Digest::SHA; -use UUID; +use UUID qw(uuid); use PVE::SafeSyslog; use PVE::Tools qw(extract_param);