Page 1 of 1

unpacking problem

Posted: April 29th, 2008, 5:03 pm
by JohnFalstaff
I upgraded to the latest svn version of 0.4.0 and noticed that SABnzbd+ would seem to get stuck verifying a single job. To make it work again, I had to change line 139 of postproc.py from

complete_dir, filename_set, tv_file = TVSeasonCheck(complete_dir, dirname)

to

complete_dir, filename_set, tv_file = TVSeasonCheck(self.complete_dir, dirname)

Re: unpacking problem

Posted: May 1st, 2008, 4:45 pm
by switch
I don't really see how the original value would not work.

Could you send your sabnzbd.ini (with passwords removed) to bugs@sabnzbd.org
I'm guessing it must be something to do with the categories.

Re: unpacking problem

Posted: May 2nd, 2008, 1:32 am
by shypike
switch wrote: I don't really see how the original value would not work.
"complete_dir" is the full path to the destination directory.
"self.complete_dir" is the default root for uncategorized downloads.

Re: unpacking problem

Posted: May 4th, 2008, 3:14 pm
by JohnFalstaff
Thanks, I guess the problem is already fixed. I was getting in the logs

File "sabnzbd\postproc.pyo", line 139, in run
UnboundLocalError: local variable 'complete_dir' referenced before assignment

just as others reported.