mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-19 21:03:14 -07:00
is this really necessary? #262
This commit is contained in:
parent
71f35179c7
commit
722c123214
1 changed files with 2 additions and 1 deletions
|
@ -35,6 +35,7 @@ def main(inputDirectory, inputName, inputCategory, inputHash, inputID):
|
||||||
extracted_folder = []
|
extracted_folder = []
|
||||||
extractionSuccess = False
|
extractionSuccess = False
|
||||||
copy_list = []
|
copy_list = []
|
||||||
|
useLink = useLink_in
|
||||||
|
|
||||||
Logger.debug("MAIN: Received Directory: %s | Name: %s | Category: %s", inputDirectory, inputName, inputCategory)
|
Logger.debug("MAIN: Received Directory: %s | Name: %s | Category: %s", inputDirectory, inputName, inputCategory)
|
||||||
if inputCategory in sbCategory and sbFork in SICKBEARD_TORRENT:
|
if inputCategory in sbCategory and sbFork in SICKBEARD_TORRENT:
|
||||||
|
@ -431,7 +432,7 @@ if __name__ == "__main__":
|
||||||
config.read(configFilename)
|
config.read(configFilename)
|
||||||
# EXAMPLE VALUES:
|
# EXAMPLE VALUES:
|
||||||
clientAgent = config.get("Torrent", "clientAgent") # utorrent | deluge | transmission | rtorrent | other
|
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/
|
outputDirectory = config.get("Torrent", "outputDirectory") # /abs/path/to/complete/
|
||||||
categories = (config.get("Torrent", "categories")).split(',') # music,music_videos,pictures,software
|
categories = (config.get("Torrent", "categories")).split(',') # music,music_videos,pictures,software
|
||||||
noFlatten = (config.get("Torrent", "noFlatten")).split(',')
|
noFlatten = (config.get("Torrent", "noFlatten")).split(',')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue