From 68300601d205649d702afec522d8bc575d772e62 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Thu, 23 May 2019 09:28:45 +0200 Subject: [PATCH] fixup: nitpick: no parenthesis on simple post if Signed-off-by: Thomas Lamprecht --- src/PVE/LXC/Create.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.39.2