aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHåkon Solbjørg <hakon@solbj.org>2023-02-23 19:06:47 +0100
committerHåkon Solbjørg <hakon@solbj.org>2023-02-23 19:06:50 +0100
commitec8386d110d0632d29ee6679c0c8c4a2a7742797 (patch)
tree94d2bb6e66d5e0a79a613d51ba6150fb6d83b6d6
parent01ce44904bdec7ec1c1d3cadcfd1e26c5d083d21 (diff)
fix(koblingsplan): As a Norwegian I support unicode characters
Also: systemstøtte, not systemst\xF8tte
-rw-r--r--tools/koblingsplan/script.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/koblingsplan/script.py b/tools/koblingsplan/script.py
index 20396bc..c27eda9 100644
--- a/tools/koblingsplan/script.py
+++ b/tools/koblingsplan/script.py
@@ -54,4 +54,4 @@ with open('tg23-koblingsplan.csv', newline='') as csvfile:
dataset.append(current_iteration)
- print(yaml.dump(dataset, default_flow_style=False, sort_keys=False))
+ print(yaml.dump(dataset, default_flow_style=False, sort_keys=False, allow_unicode=True))