Hi,

I found a little mistake in the Web2Py-book but i dont know if this is the 
right place to report these things.

Anyway:

I was reading about using the scheduler when i saw this:

completed_runs = db(db.scheduler_run.status='COMPLETED').select()

Which gives the error:

SyntaxError: keyword can't be an expression

Because this must be (dubble ==):

completed_runs = db(db.scheduler_run.status=='COMPLETED').select()

Link: 
http://web2py.com/books/default/chapter/29/4?search=scheduler#Scheduler-%28experimental%29

Regards,
Remco

-- 



Reply via email to