Skip to content

Commit

Permalink
fix extra '(' in master
Browse files Browse the repository at this point in the history
  • Loading branch information
justinmichaelvieira committed Jul 17, 2015
1 parent 4ca4751 commit 0db69c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xgoogle/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ def _extract_title_url(self, result):

def _extract_description(self, result):
#desc_td = result.findNext('td')
desc_div = result.find('span', 'st'))
desc_div = result.find('span', 'st')
if not desc_td:
self._maybe_raise(ParseError, "Description tag in Google search result was not found", result)
return None
Expand Down

0 comments on commit 0db69c6

Please sign in to comment.