>
>     for record in records:
>         record = db(db.plugin_seq.processed_seq).select()
>

Can you explain the above code? You are repeating the same query every pass 
through the for loop (the query returns all records that have a value for 
processed_seq). You then end up with the "record" variable being assigned 
to the set of Rows returned by that query (not to a single record). What 
are you trying to do there?

Anthony

Reply via email to