[google-appengine] Re: Very strange error inside of transactions..?

2009-05-18 Thread Marte Soliza
It's probably a scoping problem. When using a variable name that's the same with the one defined outside, you can only use it as reference to the value outside, or as a new local variable, but not both. And you declare that a variable is local to the function by having an assignment operation on th

[google-appengine] Re: Very strange error inside of transactions..?

2009-05-17 Thread Dieter Krachtus
Some things cannot be done in the transaction block...like queries :) On May 17, 1:07 pm, Tim Hoffman wrote: > I would suggest you include all of the code in this block > If you are getting the error then I will trust the python interpreter > over your code ;-) > > T > > On May 17, 10:34 am, "as

[google-appengine] Re: Very strange error inside of transactions..?

2009-05-17 Thread Tim Hoffman
I would suggest you include all of the code in this block If you are getting the error then I will trust the python interpreter over your code ;-) T On May 17, 10:34 am, "astrid.thuec...@googlemail.com" wrote: > I encounter a very strange error which wasn't here before and I > already wonder if