Re: [google-appengine] One problem in GAE but NOT in local host.

2011-04-09 Thread Ritesh Nadhani
The admin logs should have a traceback giving you more information. On Sat, Apr 9, 2011 at 7:38 AM, Jimmy wrote: > I run my program on GAE, but one error show up which is "IndexError: > list index out of range". > But I try to run it on local host. It's totally okay. > > I want to know why cause

Re: [google-appengine] One problem in GAE but NOT in local host.

2011-04-09 Thread Ross M Karchner
Can you share the line of code where the error occurs? That error occurs when you're trying access the numeric index of something in a sequence, that doesn't exist, like: >>> l=[0,1,2,3] >>> l[4] Traceback (most recent call last): File "", line 1, in IndexError: list index out of range On S

Re: [google-appengine] One problem in GAE but NOT in local host.

2011-04-09 Thread Wim den Ouden
GAE server and local host are not the same, the datastore is 'verry' different. Maybe your data online is much bigger? The index building is not ready? To many indexen? 2011/4/9 Jimmy > I run my program on GAE, but one error show up which is "IndexError: > list index out of range". > But I try t

[google-appengine] One problem in GAE but NOT in local host.

2011-04-09 Thread Jimmy
I run my program on GAE, but one error show up which is "IndexError: list index out of range". But I try to run it on local host. It's totally okay. I want to know why cause this problem and fix it. Thank you for reading and answering. -- You received this message because you are subscribed to t