From 7ebb9a1be3d5073ec4a6727f184714750f440449 Mon Sep 17 00:00:00 2001 From: Elena ``of Valhalla'' Grandi Date: Fri, 6 Jan 2017 17:58:42 +0100 Subject: force text fields to be entered as block text --- lesana/collection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lesana/collection.py b/lesana/collection.py index d924699..b648230 100644 --- a/lesana/collection.py +++ b/lesana/collection.py @@ -48,7 +48,7 @@ class Entry(object): if t == 'string': data += ("{name}: ''\n".format(**field)) elif t == 'text': - data += ("{name}: |\n\n".format(**field)) + data += ("{name}: |\n .\n".format(**field)) elif t == 'integer': data += ("{name}: 0\n".format(**field)) else: -- cgit v1.2.3