From: Thomas Lamprecht Date: Thu, 23 May 2019 07:28:45 +0000 (+0200) Subject: fixup: nitpick: no parenthesis on simple post if X-Git-Url: https://git.proxmox.com/?p=pve-container.git;a=commitdiff_plain;h=68300601d205649d702afec522d8bc575d772e62;hp=539660e2bd3e9a557a8c0ce7e17865377bf269b9 fixup: nitpick: no parenthesis on simple post if Signed-off-by: Thomas Lamprecht --- diff --git a/src/PVE/LXC/Create.pm b/src/PVE/LXC/Create.pm index e15d091..029c940 100644 --- a/src/PVE/LXC/Create.pm +++ b/src/PVE/LXC/Create.pm @@ -81,7 +81,7 @@ sub restore_archive { ); if ($archive =~ /\.tar(\.[^.]+)?$/) { if (defined($1)) { - die "unrecognized compression format: $1\n" if (!defined($compression_map{$1})); + die "unrecognized compression format: $1\n" if !defined($compression_map{$1}); @compression_opt = $compression_map{$1}; } } else {