Rodolfo> Somebody can explain me what this message means??
    ...
    Rodolfo>     when, addr, passwd, digest, lang = mlist.GetRecord(id)
    Rodolfo> ValueError: unpack tuple of wrong size

It means that the list or tuple returned by mlist.GetRecord(id) didn't have
a length of 5.  To figure out what size it is, you might try this:

    stuff = mlist.GetRecord(id)
    print ">> output:", stuff
    when, addr, passwd, digest, lang = stuff

-- 
Skip Montanaro ([EMAIL PROTECTED] - http://www.mojam.com/)

------------------------------------------------------
Mailman-Users maillist  -  [EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users

Reply via email to