Skip to content
This repository was archived by the owner on Oct 23, 2020. It is now read-only.

Commit 7e00c68

Browse files
committed
Merge pull request #213 from m3brown/csv
Attempt to address csv output bug with flush command
2 parents 8419419 + f08e6f1 commit 7e00c68

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/qu/views.clj

+2-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@
4949
(response/content-type "text/html"))))
5050

5151
(defn- write-csv [data]
52-
(with-out-str (csv/write-csv *out* data)))
52+
(with-out-str (csv/write-csv *out* data))
53+
(flush))
5354

5455
(defn slice-html
5556
[view-map]

0 commit comments

Comments
 (0)