From 5b5ba1c4eefb9c349a7a5df2a4a04f41e59d9038 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Sun, 30 Mar 2008 22:08:48 +0000 Subject: [PATCH] Fix last. --- deluge/core/torrentmanager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/core/torrentmanager.py b/deluge/core/torrentmanager.py index 11ba6cfc5..5e63db155 100644 --- a/deluge/core/torrentmanager.py +++ b/deluge/core/torrentmanager.py @@ -154,7 +154,7 @@ class TorrentManager(component.Component): for key in self.torrents.keys(): if not self.torrents[key].handle.is_paused() and \ not self.torrents[key].handle.is_seed(): - if self.torrents[key].get_status("compact"): + if self.torrents[key].compact: try: self.torrents[key].pause() except: