Skip to content
Snippets Groups Projects
Commit 7341f453 authored by David Schäfer's avatar David Schäfer
Browse files

we moved to ; as a config table separator

parent 59063882
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,7 @@ def initData(cols=2, start_date="2017-01-01", end_date="2017-12-31", freq="1h"):
def initMetaString(metastring, data):
cleaned = re.sub(
r"\s*,\s*", r",", re.sub(r"\|", r",", re.sub(r"\n[ \t]+", r"\n", metastring))
r"\s*,\s*", r",", re.sub(r"\|", r";", re.sub(r"\n[ \t]+", r"\n", metastring))
)
fobj = io.StringIO(cleaned)
meta = prepareConfig(readConfig(fobj), data)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment