mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-20 13:23:18 -07:00
make naming consistent. fixes #247
This commit is contained in:
parent
7da2dd882e
commit
0093ad27c6
1 changed files with 2 additions and 2 deletions
|
@ -99,9 +99,9 @@ def processEpisode(dirName, nzbName=None, failed=False, inputCategory=None):
|
||||||
try:
|
try:
|
||||||
wait_for = int(config.get(section, "wait_for"))
|
wait_for = int(config.get(section, "wait_for"))
|
||||||
except (ConfigParser.NoOptionError, ValueError):
|
except (ConfigParser.NoOptionError, ValueError):
|
||||||
waitfor = 5
|
wait_for = 5
|
||||||
|
|
||||||
TimeOut = 60 * int(waitfor) # SickBeard needs to complete all moving and renaming before returning the log sequence via url.
|
TimeOut = 60 * int(wait_for) # SickBeard needs to complete all moving and renaming before returning the log sequence via url.
|
||||||
socket.setdefaulttimeout(int(TimeOut)) #initialize socket timeout.
|
socket.setdefaulttimeout(int(TimeOut)) #initialize socket timeout.
|
||||||
|
|
||||||
mediaContainer = (config.get("Extensions", "mediaExtensions")).split(',')
|
mediaContainer = (config.get("Extensions", "mediaExtensions")).split(',')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue