Here is a traceback for the crash:
Code: Select all
Traceback (most recent call last):
File "SABnzbd.py", line 1604, in <module>
File "SABnzbd.py", line 1189, in main
File "sabnzbd\decorators.pyo", line 31, in newFunction
File "sabnzbd\__init__.pyo", line 281, in initialize
File "sabnzbd\scheduler.pyo", line 302, in analyse
File "sabnzbd\decorators.pyo", line 43, in call_func
TypeError: pause() got multiple values for keyword argument 'save'
Line: 302
sabnzbd.downloader.Downloader.do.pause(paused or paused_all, save=True)
I believe you have a parameter mismatch, sabnzbd.downloader.Downloader.do.pause is requiring only 1 parameter, but here you're trying to pass 2; paused or paused_all which determines the save parameter, then you're trying to set by keyword, save=True which triggers the TypeError. At least, thats what I gather, still trying to brush up on my python.
Btw, I compile the source for windows, and usually try to stay 1 or 2 revisions behind current. Running on 2008R2 Std as a service.