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): def iter_torrents(self):
try: try:
table = self.parser.select(self.document.getroot(), 'table#searchResult', 1) table = self.parser.select(self.document.getroot(), 'table#searchResult', 1)
except BrokenPageError as e: except BrokenPageError:
return return
first = True first = True
for tr in table.getiterator('tr'): for tr in table.getiterator('tr'):