diff --git a/xgoogle/search.py b/xgoogle/search.py index 98b681e..1985f82 100755 --- a/xgoogle/search.py +++ b/xgoogle/search.py @@ -237,7 +237,7 @@ def _extract_results(self, soup): def _extract_result(self, result): title, url = self._extract_title_url(result) desc = self._extract_description(result) - if not title or not url or not desc: + if not title or not url: return None return SearchResult(title, url, desc)