DDG: remove unused variable

From: 3c6126fbc4
This commit is contained in:
James Lu 2014-12-10 19:29:53 -08:00
parent 3459d23a4d
commit 5d0de2d44e

View File

@ -54,7 +54,7 @@ except ImportError:
"#installing-beautiful-soup")
class DDG(callbacks.Plugin):
"""Searches results on DuckDuckGo."""
"""Searches for results on DuckDuckGo."""
threaded = True
def search(self, irc, msg, args, text):
@ -74,7 +74,6 @@ class DDG(callbacks.Plugin):
# DuckDuckGo lite uses tables for everything. Each WEB result is made
# up of 3 <tr> tags:
tables = soup.find_all('table')
regex = re.compile('.*!(sponsored).*')
webresults = tables[1].find_all('tr')
if not webresults: