From e1d76c3f787560300f60e04d2a9dffcfd6c9bc82 Mon Sep 17 00:00:00 2001 From: Nick Walton Date: Thu, 26 Sep 2019 13:52:46 -0600 Subject: [PATCH] update --- story/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/story/utils.py b/story/utils.py index 29484b8..0923942 100644 --- a/story/utils.py +++ b/story/utils.py @@ -143,6 +143,7 @@ def capitalize_first_letters(text): def first_to_second_person(text): text = " " + text text = text.replace("’", "'") + text = text.replace("`", "'") for pair in first_to_second_mappings: variations = mapping_variation_pairs(pair) for variation in variations: @@ -153,6 +154,7 @@ def first_to_second_person(text): def second_to_first_person(text): text = " " + text text = text.replace("’", "'") + text = text.replace("`", "'") for pair in second_to_first_mappings: variations = mapping_variation_pairs(pair) for variation in variations: