Peter Howell wrote:File "/usr/local/freevo/src/helpers/recordserver.py", line 598, in xmlrpc_findMatches
(status, response) = self.findMatches(find)
exceptions.ValueError: unpack list of wrong size
Are you doing a search here? That method should always return a tupple of (bolean, string or list) and I've never seen fineMatched blow up like this. I will take a closer look in a bit.
Can you make a modification and then try to reproduce this error? (I can't)
In /usr/local/freevo/src/helpers/recordserver.py, line 240,
change:
return []
to:
return (FALSE, 'no search string')Don't forget to maintain the indentation. Also, you will have to restart recordserver before you test the change.
-Rob
------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. SourceForge.net hosts over 70,000 Open Source Projects. See the people who have HELPED US provide better services: Click here: http://sourceforge.net/supporters.php _______________________________________________ Freevo-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-users
