remove unused variable

This commit is contained in:
Romain Bignon 2013-02-10 19:31:46 +01:00
commit a641687824

View file

@ -39,7 +39,7 @@ class TorrentsPage(BasePage):
def iter_torrents(self):
try:
table = self.parser.select(self.document.getroot(), 'table#searchResult', 1)
except BrokenPageError as e:
except BrokenPageError:
return
first = True
for tr in table.getiterator('tr'):