diff options
Diffstat (limited to 'tpblite/models')
-rw-r--r-- | tpblite/models/torrents.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tpblite/models/torrents.py b/tpblite/models/torrents.py index 38e8149..3d6fc10 100644 --- a/tpblite/models/torrents.py +++ b/tpblite/models/torrents.py @@ -71,13 +71,10 @@ class Torrent: def _getVip(self): image_name = self.html_row.xpath('.//img/@src')[1] - print('shalom') - print(image_name) return 'vip' in image_name def _getTrusted(self): image_name = self.html_row.xpath('.//img/@src')[1] - print(image_name) return 'trusted' in image_name |