Skip to content
Snippets Groups Projects
Commit 1c90cf4a authored by Julian Rother's avatar Julian Rother
Browse files

Fix query delimiters

parent 01e3fbac
Branches
No related tags found
No related merge requests found
......@@ -69,7 +69,8 @@ def query(operation, *params, delim="sep"):
name = desc[0].split('.')[-1]
if name == delim:
res[-1].append({})
elif type(col) == str:
continue
if type(col) == str:
col = col.replace('\\n', '\n').replace('\\r', '\r')
res[-1][-1][name] = col
if len(res[-1]) == 1:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment