Browse Source

Deluge wrong sp wrap. fix #2463

pull/2469/merge
Ruud 12 years ago
parent
commit
658596659f
  1. 2
      couchpotato/core/downloaders/deluge/main.py

2
couchpotato/core/downloaders/deluge/main.py

@ -120,7 +120,7 @@ class Deluge(Downloader):
torrent_files = [] torrent_files = []
for file_item in 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({ release_downloads.append({
'id': torrent['hash'], 'id': torrent['hash'],

Loading…
Cancel
Save