diff --git a/translate.py b/translate.py index d45f3f7..ea8054a 100644 --- a/translate.py +++ b/translate.py @@ -62,7 +62,7 @@ def translate_threaded(self, mode, text): paragraph_res = [] chunks = [] for word in paragraph.split(): - if len(chunks) == 0 or len(chunks[-1]) > 900: + if len(chunks) == 0 or len(chunks[-1]) > 800: chunks.append(word) else: chunks[-1] += ' ' + word