mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-19 21:03:14 -07:00
parent
52cc753881
commit
a1129a2d1e
2 changed files with 2 additions and 2 deletions
|
@ -247,7 +247,7 @@
|
||||||
DelugePWD = your password
|
DelugePWD = your password
|
||||||
###### ADVANCED USE - ONLY EDIT IF YOU KNOW WHAT YOU'RE DOING ######
|
###### ADVANCED USE - ONLY EDIT IF YOU KNOW WHAT YOU'RE DOING ######
|
||||||
deleteOriginal = 0
|
deleteOriginal = 0
|
||||||
chmodDirecotry = 0
|
chmodDirectory = 0
|
||||||
resume = 1
|
resume = 1
|
||||||
resumeOnFailure = 1
|
resumeOnFailure = 1
|
||||||
|
|
||||||
|
|
|
@ -345,7 +345,7 @@ def initialize(section=None):
|
||||||
if isinstance(NOFLATTEN, str): NOFLATTEN = NOFLATTEN.split(',')
|
if isinstance(NOFLATTEN, str): NOFLATTEN = NOFLATTEN.split(',')
|
||||||
if isinstance(CATEGORIES, str): CATEGORIES = CATEGORIES.split(',')
|
if isinstance(CATEGORIES, str): CATEGORIES = CATEGORIES.split(',')
|
||||||
DELETE_ORIGINAL = int(CFG["Torrent"]["deleteOriginal"])
|
DELETE_ORIGINAL = int(CFG["Torrent"]["deleteOriginal"])
|
||||||
TORRENT_CHMOD_DIRECTORY = int(CFG["Torrent"]["chmodDirecotry"], 8)
|
TORRENT_CHMOD_DIRECTORY = int(CFG["Torrent"]["chmodDirectory"], 8)
|
||||||
TORRENT_RESUME_ON_FAILURE = int(CFG["Torrent"]["resumeOnFailure"])
|
TORRENT_RESUME_ON_FAILURE = int(CFG["Torrent"]["resumeOnFailure"])
|
||||||
TORRENT_RESUME = int(CFG["Torrent"]["resume"])
|
TORRENT_RESUME = int(CFG["Torrent"]["resume"])
|
||||||
UTORRENTWEBUI = CFG["Torrent"]["uTorrentWEBui"] # http://localhost:8090/gui/
|
UTORRENTWEBUI = CFG["Torrent"]["uTorrentWEBui"] # http://localhost:8090/gui/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue