From 8c4077d636af8250cbb2cce1cacc5d4013829e10 Mon Sep 17 00:00:00 2001 From: Nick Walton Date: Thu, 26 Sep 2019 12:53:40 -0600 Subject: [PATCH] update --- story/utils.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/story/utils.py b/story/utils.py index 7f71e70..92e6385 100644 --- a/story/utils.py +++ b/story/utils.py @@ -137,7 +137,7 @@ def capitalize_first_letters(text): def first_to_second_person(text): - print("F_TO_S First person text:") + print("\nF_TO_S First person text:") print(text) for pair in first_to_second_mappings: variations = mapping_variation_pairs(pair) @@ -145,11 +145,11 @@ def first_to_second_person(text): text = replace_outside_quotes(text, variation[0], variation[1]) return capitalize_first_letters(text) - print("F_TO_S second person text:") + print("\nF_TO_S second person text:") print(text) def second_to_first_person(text): - print("S_TO_F second person text:") + print("\nS_TO_F second person text:") print(text) for pair in second_to_first_mappings: @@ -157,7 +157,7 @@ def second_to_first_person(text): for variation in variations: text = replace_outside_quotes(text, variation[0], variation[1]) - print("S_TO_F first person text:") + print("\nS_TO_F first person text:") print(text) return capitalize_first_letters(text)