diff --git a/couchpotato/core/downloaders/utorrent/main.py b/couchpotato/core/downloaders/utorrent/main.py index e6e251a3..9826f0a7 100644 --- a/couchpotato/core/downloaders/utorrent/main.py +++ b/couchpotato/core/downloaders/utorrent/main.py @@ -131,7 +131,7 @@ class uTorrent(Downloader): for item in queue['torrents']: #Get files of the torrent - torrent_files = '' + torrent_files = [] try: torrent_files = json.loads(self.utorrent_api.get_files(item[0])) torrent_files = [os.path.join(item[26], torrent_file[0]) for torrent_file in torrent_files['files'][1]]