Minor update for #5285

This commit is contained in:
Miroslav Stampar
2023-01-09 15:35:21 +01:00
parent 96adc7c098
commit de527f1814
2 changed files with 2 additions and 2 deletions

View File

@@ -2656,7 +2656,7 @@ def _basicOptionValidation():
if conf.paramExclude:
if re.search(r"\A\w+,", conf.paramExclude):
conf.paramExclude = r"\A(%s)\Z" % ('|'.join(re.escape(_) for _ in conf.paramExclude.split(',')))
conf.paramExclude = r"\A(%s)\Z" % ('|'.join(re.escape(_).strip() for _ in conf.paramExclude.split(',')))
try:
re.compile(conf.paramExclude)