diff --git a/plugins/google.py b/plugins/google.py index 8f49c6e..a96b49c 100644 --- a/plugins/google.py +++ b/plugins/google.py @@ -44,11 +44,8 @@ def google(inp): content = "No description available." else: content = http.html.fromstring(content).text_content() - - if len(content) > 250: - content = content[:250] + '...' - out = '%s :: %s :: %s' % (title, content, result['unescapedUrl']) + out = '%s :: %s :: %s' % (result['unescapedUrl'], title, content) out = ' '.join(out.split())