strip \n from config lines

This commit is contained in:
2019-10-06 12:27:45 +02:00
parent 70a37f6192
commit 1efa280a53

View File

@@ -59,6 +59,7 @@ def readExecutionConfig(configFile):
global config
with open(configFile, "r") as f:
for line in f:
line = line.strip("\n")
if line.startswith(COMMENT_INDICATOR):
continue
projectIdent, token, scriptName = line.split(SEPERATOR)