From 9e5ac17b3731991304395cd81bc4181bc40a9e82 Mon Sep 17 00:00:00 2001 From: clinton-hall Date: Mon, 17 Feb 2014 09:59:58 +1030 Subject: [PATCH] fix noFlatten for SICKBEARD_TORRENT. fixes #262 --- TorrentToMedia.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TorrentToMedia.py b/TorrentToMedia.py index 6aa0b3de..8581f084 100755 --- a/TorrentToMedia.py +++ b/TorrentToMedia.py @@ -129,7 +129,7 @@ def main(inputDirectory, inputName, inputCategory, inputHash, inputID): useLink = 'no' # default to copy. if inputCategory in sbCategory and sbFork in SICKBEARD_TORRENT: # Don't flatten when sending to SICKBEARD_TORRENT - noFlatten.extend(inputCategory) + noFlatten.extend(sbCategory) outputDestinationMaster = outputDestination # Save the original, so we can change this within the loop below, and reset afterwards. now = datetime.datetime.now()