diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2017-01-06 17:58:42 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2017-01-06 17:58:42 +0100 |
commit | 7ebb9a1be3d5073ec4a6727f184714750f440449 (patch) | |
tree | b2ea6c7d9bc5a0b91d38ece1871a394b83fdb49f | |
parent | da03efeaed5c578d28ed50b5d91404e4c2e9bfbd (diff) |
force text fields to be entered as block text
-rw-r--r-- | lesana/collection.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |