Skip to content

Commit

Permalink
Bug in Blueprint._step_in() in adding newline
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-brajer committed Dec 13, 2020
1 parent fb4b51d commit ff185f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blueprint.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit ff185f7

Please sign in to comment.