From: Ralf Jung Date: Sat, 6 Oct 2012 10:06:09 +0000 (+0200) Subject: explain why there is no strip() call for the value X-Git-Url: https://git.ralfj.de/lilass.git/commitdiff_plain/705710cfb8b5179fe42e031c856ccd3f771a1865 explain why there is no strip() call for the value --- diff --git a/dsl.py b/dsl.py index d959b07..d14675f 100755 --- a/dsl.py +++ b/dsl.py @@ -26,8 +26,7 @@ def loadConfigFile(file): # parse line pos = line.index("=") # will raise exception when substring is not found curKey = line[:pos].strip() - value = line[pos+1:] - result[curKey] = shlex.split(value) + result[curKey] = shlex.split(line[pos+1:]) # shlex.split also strips except Exception: raise Exception("Invalid config, line %d: Error parsing line (quoting issue?)" % linenr) # add some convencience get functions