]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blobdiff - webapp/handlers_tracker.py
Fix tracker.ipfire.org.
[people/shoehn/ipfire.org.git] / webapp / handlers_tracker.py
index 3a1fd4978554a385bd8e97ddee18aa1379c90e7a..ba2f6618e35a7270abd33bd84b575890ac816166 100644 (file)
@@ -25,10 +25,9 @@ class TrackerDetailHandler(BaseHandler):
                        raise tornado.web.HTTPError(404, "Could not find torrent file for hash: %s" % torrent_hash)
 
                peers = self.tracker.get_peers(torrent_hash)
-               seeds = self.tracker.get_seeds(torrent_hash)
 
                self.render("tracker-torrent-detail.html", release=file.release,
-                       file=file, peers=peers, seeds=seeds)
+                       file=file, peers=peers)
 
 
 class TrackerDownloadHandler(BaseHandler):