diff --git a/linux_story/helper_functions.py b/linux_story/helper_functions.py index f9c68b3..17557d4 100644 --- a/linux_story/helper_functions.py +++ b/linux_story/helper_functions.py @@ -323,7 +323,7 @@ def reduction(memo, line): def format_line(line): num_padding = max_characters - len(strip_formatting(line)) - return "| {} |".format(line + (" " * num_padding)) + return u"| {} |".format(line + (" " * num_padding)) max_characters = reduce(reduction, lines, 0) outer_line = " {} ".format("-" * (max_characters + 2))