diff --git a/AUTHORS b/AUTHORS index a3e26e63..0cfcc73a 100644 --- a/AUTHORS +++ b/AUTHORS @@ -26,7 +26,7 @@ Xavier Guerrin * CrAgr backend maintainer. Julien Veyssier - * CreditMutuel, Geolocip and Ipinfodb backends maintainer. + * CreditMutuel, Geolocip, Ipinfodb, Piratebay backends maintainer. Laurent Bachelier * Various contributions. diff --git a/weboob/backends/piratebay/backend.py b/weboob/backends/piratebay/backend.py index 214ca8c1..b3369a98 100644 --- a/weboob/backends/piratebay/backend.py +++ b/weboob/backends/piratebay/backend.py @@ -17,7 +17,6 @@ from weboob.capabilities.torrent import ICapTorrent from weboob.tools.backend import BaseBackend -from weboob.tools.value import ValuesDict, Value from .browser import PiratebayBrowser diff --git a/weboob/backends/piratebay/pages/torrents.py b/weboob/backends/piratebay/pages/torrents.py index d75168cb..e4d95ae0 100644 --- a/weboob/backends/piratebay/pages/torrents.py +++ b/weboob/backends/piratebay/pages/torrents.py @@ -16,13 +16,9 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -import re -from logging import warning, debug -from weboob.tools.misc import html2text from weboob.tools.browser import BasePage from weboob.capabilities.torrent import Torrent -from weboob.capabilities.base import NotLoaded __all__ = ['TorrentsPage']