diff --git a/plugins/google.py b/plugins/google.py index a96b49c..c80d33e 100644 --- a/plugins/google.py +++ b/plugins/google.py @@ -49,7 +49,7 @@ def google(inp): out = ' '.join(out.split()) - if len(out) > 300: - out = out[:out.rfind(' ')] + '..."' + if len(out) > 250: + out = out[:out.rfind(' ')] + '...' return out