diff --git a/yomi_base/reader_util.py b/yomi_base/reader_util.py index 26ff3f2..014263f 100644 --- a/yomi_base/reader_util.py +++ b/yomi_base/reader_util.py @@ -70,7 +70,7 @@ def findSentence(content, position): if c in terminators: end = i + 1 break - elif (c in quotesBwd or c == '\n'): + elif c in quotesBwd: end = i break