[google-appengine] Re: Ereporter problem

2011-11-09 Thread Ubaldo Huerta
Same problem, blank page. Note that your second example won't work as it will blow up an Exeption. sender argument is always required, even though it isn't needed if you just want to output the exception -- You received this message because you are subscribed to the Google Groups "Google App E

[google-appengine] Re: Ereporter problem

2011-11-09 Thread Ubaldo Huerta
Well, just read the ereporter.py, it's easy to follow. You need to pass a date paremeter (it defaults to yesterday) Pass today's date and you'll see the exception records in the ouput. Something like "&date=%s" % datetime.datetime.now().strftime("%Y-%m-%d") -- You received this message be

[google-appengine] Re: Ereporter problem

2014-05-31 Thread Adam Wildavsky
Thanks! Until i saw this I could not figure out why I was not receiving mail. I want my cron to send me all outstanding exception reports, though, not just yesterday's. How can I achieve that? Calling datetime.datetime.now() would be clever, but i don't know where to put the call. My choices se

Re: [google-appengine] Re: Ereporter problem

2014-05-31 Thread Adam Wildavsky
I think I figured this out, though I haven't yet implemented it. I described my proposal at http://stackoverflow.com/questions/21779466/gae-python-ereporter-doesnt-send-email/23922029 Here's the relevant part -- I also included a link to this thread: You could also write your own cron handler t