From 658596659fccd4f16de415dedb09063d947e5ef7 Mon Sep 17 00:00:00 2001 From: Ruud Date: Sat, 16 Nov 2013 17:23:51 +0100 Subject: [PATCH] Deluge wrong sp wrap. fix #2463 --- couchpotato/core/downloaders/deluge/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/downloaders/deluge/main.py b/couchpotato/core/downloaders/deluge/main.py index f65b74a..f3a1238 100644 --- a/couchpotato/core/downloaders/deluge/main.py +++ b/couchpotato/core/downloaders/deluge/main.py @@ -120,7 +120,7 @@ class Deluge(Downloader): torrent_files = [] for file_item in torrent['files']: - torrent_files.append(os.path.join(download_dir), sp(file_item['path'])) + torrent_files.append(sp(os.path.join(download_dir, file_item['path']))) release_downloads.append({ 'id': torrent['hash'],