diff --git a/plugins/google.py b/plugins/google.py index c80d33e..9d0a57b 100644 --- a/plugins/google.py +++ b/plugins/google.py @@ -45,11 +45,11 @@ def google(inp): else: content = http.html.fromstring(content).text_content() - out = '%s :: %s :: %s' % (result['unescapedUrl'], title, content) + out = '%s -- \x02%s\x02: "%s"' % (result['unescapedUrl'], title, content) out = ' '.join(out.split()) - if len(out) > 250: + if len(out) > 300: out = out[:out.rfind(' ')] + '...' return out