The log is riddled with this error message when it trys to combine the files:
Code: Select all
2011-09-22 21:21:31,750::INFO::[__init__:814] Traceback:
Traceback (most recent call last):
File "sabnzbd\__init__.pyo", line 811, in load_data
WindowsError: [Error 5] Access is denied: 'd:\\incoming-news\\Downloads\\incomplete\\nzbname\\__ADMIN__\\SABnzbd_article_512qyx'
Code: Select all
def load_data(_id, path, remove=True, do_pickle=True, silent=False):
""" Read data from disk file """
path = os.path.join(path, _id)
if not os.path.exists(path):
logging.info("%s missing", path)
return None
if not silent:
logging.debug("Loading data for %s from %s", _id, path)
try:
_f = open(path, 'rb')
if do_pickle:
data = cPickle.load(_f)
else:
data = _f.read()
_f.close()
if remove:
os.remove(path)
except:
logging.error(Ta('Loading %s failed'), path)
logging.info("Traceback: ", exc_info = True)
return None
return data
Any ideas on what to try next?
Thanks,
flips