Fixing nonsensical value

Signed-off-by: Jiri Podivin <jpodivin@redhat.com>
This commit is contained in:
Jiri Podivin 2024-09-11 17:05:10 +02:00 committed by kevin
parent 104ecb73b4
commit 091445e61f

View file

@ -19,7 +19,7 @@ class TorrentObj(object):
self.name = name
self.downloaders = 0
self.seeds = 0
self.size = 0L
self.size = 0
self.completed = 0
def __cmp__(self, other):