From d97d3292c7464a79c184fc6d0c4edd87fff36feb Mon Sep 17 00:00:00 2001 From: crouzet Date: Fri, 1 Apr 2022 11:23:56 +0200 Subject: [PATCH] sat #29553 : integrate patch provided by Emilio on Forum, to correct an error on sat template with python 3 --- commands/template.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/commands/template.py b/commands/template.py index c7e1980..e4ddc59 100644 --- a/commands/template.py +++ b/commands/template.py @@ -123,8 +123,7 @@ class TemplateSettings: self.delimiter_char = get_dico_param(ldic, "delimiter", ":sat:") # get the ignore filter - self.ignore_filters = map(lambda l: l.strip(), - ldic["ignore_filters"].split(',')) + self.ignore_filters = [l.strip() for l in ldic["ignore_filters"].split(',')] def has_pyconf(self): return len(self.pyconf) > 0 -- 2.39.2