Open neuegram opened 9 years ago
Issue can be resolved by making the following changes to line 439 in parsing.py:
# Replaced This Code: if 'No results found for' in self.html or 'did not match any documents' in self.html:
if 'No results found for' in str(self.html) or 'did not match any documents' in str(self.html): # Working Code
self.no_results = True