From ff185f78339f0ef4e813be881da0513aa22f2170 Mon Sep 17 00:00:00 2001 From: Martin Brajer Date: Sun, 13 Dec 2020 15:39:02 +0100 Subject: [PATCH] Bug in Blueprint._step_in() in adding newline --- src/blueprint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blueprint.py b/src/blueprint.py index c0d67ab..d11f517 100644 --- a/src/blueprint.py +++ b/src/blueprint.py @@ -159,7 +159,7 @@ def _step_in(self, layout, this_step): # Keys having values from previous levels are NOT changed. elif key not in layout: if key == 'text': - value = '\n'.join(*value) + value = '\n'.join(value) layout[key] = value # Recursively browse all "next" branches.