From defe8d490c3038df7f5fce11b51238750cbd7e42 Mon Sep 17 00:00:00 2001 From: Juerd Waalboer Date: Tue, 30 Aug 2022 20:42:44 +0200 Subject: [PATCH] pfand: fix syntax error --- plugins/pfand | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/pfand b/plugins/pfand index a9547c0..c95eabc 100644 --- a/plugins/pfand +++ b/plugins/pfand @@ -14,7 +14,7 @@ HELP "pfand" => "Pfand zurueck"; sub _read_pfand() { return { - map { split " " } grep /\S/, grep !/^\s*#/, slurp 'revbank.pfand'; + map { split " " } grep /\S/, grep !/^\s*#/, slurp 'revbank.pfand' }; } @@ -54,4 +54,3 @@ sub hook_add_entry ($class, $cart, $entry, @) { return; } -