From dd1310a5ff21e5b1087b3970af5655a34346bf17 Mon Sep 17 00:00:00 2001 From: Nick Date: Tue, 24 Sep 2019 13:47:27 -0600 Subject: [PATCH] update --- story/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/story/utils.py b/story/utils.py index a2ffc06..50514e0 100644 --- a/story/utils.py +++ b/story/utils.py @@ -103,7 +103,6 @@ def capitalize_helper(string): def capitalize_first_letters(text): - print("Text to capitalize is ", text) first_letters_regex = re.compile(r'((?<=[\.\?!]\s)(\w+)|(^\w+))') def cap(match):