diff --git a/autoProcessComics.py b/autoProcessComics.py index eeac5a83..f26b26be 100644 --- a/autoProcessComics.py +++ b/autoProcessComics.py @@ -1,6 +1,7 @@ import sys import urllib import os.path +import time import ConfigParser from nzbToMediaEnv import * @@ -85,4 +86,6 @@ def processEpisode(dirName, nzbName=None): result = urlObj.readlines() for line in result: 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