diff options
Diffstat (limited to 'tpblite')
-rw-r--r-- | tpblite/models/torrents.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tpblite/models/torrents.py b/tpblite/models/torrents.py index 27adddf..a60ee0a 100644 --- a/tpblite/models/torrents.py +++ b/tpblite/models/torrents.py @@ -91,6 +91,7 @@ class Torrents(object): return rows def getBestTorrent(self, min_seeds=30, min_filesize='1 GiB', max_filesize='4 GiB'): + '''TODO: handle if this is 0''' if not type(min_filesize) == 'int': min_filesize = fileSizeStrToInt(min_filesize) if not type(max_filesize) == 'int': |