Re: [web2py] ValueError: need more than 1 value to unpack

2011-11-21 Thread Vinicius Assef
Rahul, this is a str.split() error and it happens when there are less pieces than str.split() expects. An example: >>> fullname = 'John Smith' >>> (first_name, last_name) = fullname.split(" ") >>> print 'first:', first_name, '- last:', last_name John - Smith >>> fullname = 'John' >>> (first_name,

Re: [web2py] ValueError: need more than 1 value to unpack

2011-11-21 Thread ~redShadow~
On Mon, 2011-11-21 at 04:48 -0800, Rahul wrote: > my model (db.py)- > > db.define_table('updates', > Field('description', 'text'), > Field('updated_on','date', readable=False, > writable=False, default=now), > Field('posted_by', readabl

[web2py] ValueError: need more than 1 value to unpack

2011-11-21 Thread Rahul
Hi All, Is there a solution for below traceback I posted (I am on 1.99.2, win7, firefox,ie9). Tried search for a solution in below thread .. no help ... http://groups.google.com/group/web2py/browse_thread/thread/fc4a30879f5590e/59d060e8ded6eae0 Traceback 1.2.3.4.5.6.7.8.9.10.11.12.13.14.15.1

[web2py] ValueError: need more than 1 value to unpack

2010-11-12 Thread Kostas M
I am trying to reproduce the "What is going on with web2py?" video (http://vimeo.com/13485916). At the 'friend' section, when I try to enter a new friend eg. "Max" I am getting this error: Traceback (most recent call last): File "C:\Temp\web2py\applications\myplayepedvm/models/ plugin_wiki.py",