Trivial update

This commit is contained in:
Miroslav Stampar
2019-11-11 14:09:02 +01:00
parent a9b6a07641
commit d193b6e331
2 changed files with 2 additions and 2 deletions

View File

@@ -1737,7 +1737,7 @@ def _cleanupOptions():
if not regex:
conf.exclude = re.sub(r"\s*,\s*", ',', conf.exclude)
conf.exclude = "\A%s\Z" % '|'.join(re.escape(_) for _ in conf.exclude.split(','))
conf.exclude = r"\A%s\Z" % '|'.join(re.escape(_) for _ in conf.exclude.split(','))
if conf.binaryFields:
conf.binaryFields = re.sub(r"\s*,\s*", ',', conf.binaryFields)