From bf6265353146fa36468ded856b5e8c11b67305a0 Mon Sep 17 00:00:00 2001 From: Dean Gardiner Date: Sun, 28 Jul 2013 00:36:10 +1200 Subject: [PATCH] Added missing 'folder' parameter on the rtorrent downloader to fix moving/linking issues. --- couchpotato/core/downloaders/rtorrent/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/couchpotato/core/downloaders/rtorrent/main.py b/couchpotato/core/downloaders/rtorrent/main.py index 5da64cb7..a06ebe5e 100755 --- a/couchpotato/core/downloaders/rtorrent/main.py +++ b/couchpotato/core/downloaders/rtorrent/main.py @@ -87,11 +87,11 @@ class rTorrent(Downloader): 'original_status': item.state, 'timeleft': str(timedelta(seconds=float(item.left_bytes) / item.down_rate)) if item.down_rate > 0 else -1, - 'folder': '' + 'folder': item.directory }) return statuses except Exception, err: - log.error('Failed to send torrent to rTorrent: %s', err) + log.error('Failed to get status from rTorrent: %s', err) return False