fix dict table parsing when spaces in column names

master
nixo 2020-06-22 11:26:32 +02:00
parent e2780c7809
commit 9d371f7834
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ values are Array taken from `VALUES', and assign it to `NAME'"
(format "%s = Dict(%s)" name
(mapconcat
(lambda (i)
(format ":%s => [%s]" (nth i column-names)
(format "Symbol(\"%s\") => [%s]" (nth i column-names)
(mapconcat
(lambda (line) (format "%S" (nth i line)))
values