aboutsummaryrefslogtreecommitdiff
path: root/dump
diff options
context:
space:
mode:
authorMunyoki Kilyungi2023-08-11 15:09:00 +0300
committerMunyoki Kilyungi2023-08-11 15:09:00 +0300
commit439afb0e165c3bf4cf288ae9bb02e2489ed8b641 (patch)
tree7d532b4e94a8e3775aca7df3a712007487da6fab /dump
parent1cda2a508f4766d503bd6fed97add9e9885c25ef (diff)
downloadgn-transform-databases-439afb0e165c3bf4cf288ae9bb02e2489ed8b641.tar.gz
Use correct encoding when writing to a file
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'dump')
-rw-r--r--dump/special-forms.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/dump/special-forms.scm b/dump/special-forms.scm
index 99cebee..7b32785 100644
--- a/dump/special-forms.scm
+++ b/dump/special-forms.scm
@@ -577,7 +577,7 @@ The above query results to triples that have the form:
(prefix k v #f))))
prefixes))))
inputs))
- #:encoding "utf8")
+ #:encoding "UTF-8")
;; Dumping the actual data
(with-output-to-file
@@ -595,5 +595,5 @@ The above query results to triples that have the form:
(lambda (proc)
(proc db #:dump-metadata? table-metadata?))
inputs))
- #:encoding "utf8")))))))
+ #:encoding "UTF-8")))))))