This commit is contained in:
Miroslav Stampar
2018-02-21 11:47:01 +01:00
parent 24cc6e92e9
commit 67f8c22702
3 changed files with 7 additions and 4 deletions

View File

@@ -1648,7 +1648,10 @@ def _cleanupOptions():
conf.rParam = []
if conf.paramDel and '\\' in conf.paramDel:
conf.paramDel = conf.paramDel.decode("string_escape")
try:
conf.paramDel = conf.paramDel.decode("string_escape")
except ValueError:
pass
if conf.skip:
conf.skip = conf.skip.replace(" ", "")