From 091445e61f1e22d5d9734b97760e7f2c7e59dbde Mon Sep 17 00:00:00 2001 From: Jiri Podivin Date: Wed, 11 Sep 2024 17:05:10 +0200 Subject: [PATCH] Fixing nonsensical value Signed-off-by: Jiri Podivin --- roles/torrent/files/torrent-data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/torrent/files/torrent-data.py b/roles/torrent/files/torrent-data.py index f6bce7707e..4121c5723a 100755 --- a/roles/torrent/files/torrent-data.py +++ b/roles/torrent/files/torrent-data.py @@ -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):