X-Git-Url: https://git.ralfj.de/lilass.git/blobdiff_plain/48a8774e9e7fdbb87fbf4b8ff96c15dd5a69db46..705710cfb8b5179fe42e031c856ccd3f771a1865:/dsl.py 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