diff options
author | Matt Lyon <matthewlyon18@gmail.com> | 2019-11-26 21:33:18 +1100 |
---|---|---|
committer | Matt Lyon <matthewlyon18@gmail.com> | 2019-11-26 21:33:18 +1100 |
commit | 34d91e75d871c55b82775e169d5ebc51837d20b0 (patch) | |
tree | 0d8038ad71505de80993f70b72e222ea398c8763 /tpblite/models/utils.py | |
parent | a3fa73495141fc240ea0ad9b54d7a2882264db20 (diff) | |
download | tpb-lite-34d91e75d871c55b82775e169d5ebc51837d20b0.tar.gz tpb-lite-34d91e75d871c55b82775e169d5ebc51837d20b0.tar.bz2 tpb-lite-34d91e75d871c55b82775e169d5ebc51837d20b0.zip |
small fixes
Diffstat (limited to 'tpblite/models/utils.py')
-rw-r--r-- | tpblite/models/utils.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tpblite/models/utils.py b/tpblite/models/utils.py index 200982f..310d9fd 100644 --- a/tpblite/models/utils.py +++ b/tpblite/models/utils.py @@ -10,7 +10,6 @@ class Query(object): ''' def __init__(self, query, base_url, page, order, category): self.base_url = base_url - print('category is {} {}'.format(category,str(category))) segments = ('search', query, str(page), str(order), str(category)) self.url = URL(base_url, segments) self.html_source = self._sendRequest() |