From 722c12321498fa0540bc73bc41c25beee5285b43 Mon Sep 17 00:00:00 2001 From: clinton-hall Date: Fri, 14 Feb 2014 14:28:45 +1030 Subject: [PATCH] is this really necessary? #262 --- TorrentToMedia.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/TorrentToMedia.py b/TorrentToMedia.py index 6da2cadf..a4cf7a36 100755 --- a/TorrentToMedia.py +++ b/TorrentToMedia.py @@ -35,6 +35,7 @@ def main(inputDirectory, inputName, inputCategory, inputHash, inputID): extracted_folder = [] extractionSuccess = False copy_list = [] + useLink = useLink_in Logger.debug("MAIN: Received Directory: %s | Name: %s | Category: %s", inputDirectory, inputName, inputCategory) if inputCategory in sbCategory and sbFork in SICKBEARD_TORRENT: @@ -431,7 +432,7 @@ if __name__ == "__main__": config.read(configFilename) # EXAMPLE VALUES: clientAgent = config.get("Torrent", "clientAgent") # utorrent | deluge | transmission | rtorrent | other - useLink = config.get("Torrent", "useLink") # no | hard | sym + useLink_in = config.get("Torrent", "useLink") # no | hard | sym outputDirectory = config.get("Torrent", "outputDirectory") # /abs/path/to/complete/ categories = (config.get("Torrent", "categories")).split(',') # music,music_videos,pictures,software noFlatten = (config.get("Torrent", "noFlatten")).split(',')