mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-20 21:33:13 -07:00
add delay for now
This commit is contained in:
parent
7394523b81
commit
b16bf5fc32
1 changed files with 3 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
||||||
import sys
|
import sys
|
||||||
import urllib
|
import urllib
|
||||||
import os.path
|
import os.path
|
||||||
|
import time
|
||||||
import ConfigParser
|
import ConfigParser
|
||||||
|
|
||||||
from nzbToMediaEnv import *
|
from nzbToMediaEnv import *
|
||||||
|
@ -85,4 +86,6 @@ def processEpisode(dirName, nzbName=None):
|
||||||
result = urlObj.readlines()
|
result = urlObj.readlines()
|
||||||
for line in result:
|
for line in result:
|
||||||
Logger.info("%s", line)
|
Logger.info("%s", line)
|
||||||
|
|
||||||
|
time.sleep(60) #wait 1 minute for now... need to see just what gets logged and how long it takes to process
|
||||||
return 0 # Success
|
return 0 # Success
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue