diff options
author | Munyoki Kilyungi | 2023-08-11 15:09:00 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2023-08-11 15:09:00 +0300 |
commit | 439afb0e165c3bf4cf288ae9bb02e2489ed8b641 (patch) | |
tree | 7d532b4e94a8e3775aca7df3a712007487da6fab /dump | |
parent | 1cda2a508f4766d503bd6fed97add9e9885c25ef (diff) | |
download | gn-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.scm | 4 |
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"))))))) |