diff options
author | Uri Goldberg <uri.goldberg06@gmail.com> | 2020-11-08 17:31:06 -0600 |
---|---|---|
committer | Uri Goldberg <uri.goldberg06@gmail.com> | 2020-11-08 17:31:06 -0600 |
commit | 82bfbfeff606b7b56b8cade227389f1e5b2d1168 (patch) | |
tree | af78a1858fe10feb95d430f946667c0fc947ad4c /tpblite/models/torrents.py | |
parent | 46101cdc039c8ff0f90145e78628dd5c0235529b (diff) | |
download | tpb-lite-82bfbfeff606b7b56b8cade227389f1e5b2d1168.tar.gz tpb-lite-82bfbfeff606b7b56b8cade227389f1e5b2d1168.tar.bz2 tpb-lite-82bfbfeff606b7b56b8cade227389f1e5b2d1168.zip |
Deleted prints
Diffstat (limited to 'tpblite/models/torrents.py')
-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 |