diff options
author | Matt Lyon <matthewlyon18@gmail.com> | 2019-11-26 21:47:43 +1100 |
---|---|---|
committer | Matt Lyon <matthewlyon18@gmail.com> | 2019-11-26 21:47:43 +1100 |
commit | f2672cba007a3e7aa2ba3493875335caee955dbd (patch) | |
tree | da1391319d84050ad1b3010ae3fc7e01d54385d3 /tpblite/models/torrents.py | |
parent | 34d91e75d871c55b82775e169d5ebc51837d20b0 (diff) | |
download | tpb-lite-f2672cba007a3e7aa2ba3493875335caee955dbd.tar.gz tpb-lite-f2672cba007a3e7aa2ba3493875335caee955dbd.tar.bz2 tpb-lite-f2672cba007a3e7aa2ba3493875335caee955dbd.zip |
removed print statements
Diffstat (limited to 'tpblite/models/torrents.py')
-rw-r--r-- | tpblite/models/torrents.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tpblite/models/torrents.py b/tpblite/models/torrents.py index dd63358..27adddf 100644 --- a/tpblite/models/torrents.py +++ b/tpblite/models/torrents.py @@ -86,8 +86,6 @@ class Torrents(object): ''' rows = soup.body.find_all('tr') # remove first and last entries - print(len(rows)) - print(rows) del rows[0] del rows[-1] return rows |