add delay for now

This commit is contained in:
Clinton Hall 2013-03-05 19:27:57 -08:00
commit b16bf5fc32

View file

@ -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