From 2e96860380e4ce9490a5c7153bbc1d2f257b3165 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joel=20K=C3=A5berg?= Date: Wed, 27 Nov 2013 07:58:23 +0100 Subject: [PATCH] directory properly removed --- couchpotato/core/downloaders/utorrent/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/couchpotato/core/downloaders/utorrent/main.py b/couchpotato/core/downloaders/utorrent/main.py index 9ae5fcb3..182d932f 100644 --- a/couchpotato/core/downloaders/utorrent/main.py +++ b/couchpotato/core/downloaders/utorrent/main.py @@ -94,9 +94,9 @@ class uTorrent(Downloader): # Send request to uTorrent if data.get('protocol') == 'torrent_magnet': - self.utorrent_api.add_torrent_uri(torrent_filename, data.get('url'), directory) + self.utorrent_api.add_torrent_uri(torrent_filename, data.get('url')) else: - self.utorrent_api.add_torrent_file(torrent_filename, filedata, directory) + self.utorrent_api.add_torrent_file(torrent_filename, filedata) # Change settings of added torrent self.utorrent_api.set_torrent(torrent_hash, torrent_params)