From 61f49a2cda09c0f7a041b7691e0ab80c7d43d9a0 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Thu, 6 Mar 2008 12:54:16 +0000 Subject: [PATCH] fix andar's 2916 :P --- src/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.py b/src/core.py index 1245ee58c..2d03460be 100644 --- a/src/core.py +++ b/src/core.py @@ -275,7 +275,7 @@ class Manager: fr_sorted = [] for torrent in state.torrents: - if os.path.exists(torrent.filename + ".fastresume") + if os.path.exists(torrent.filename + ".fastresume"): fr_sorted.insert(0, torrent) else: fr_sorted.append(torrent)