Re: Exception in Django's Exception Handling

2009-02-09 Thread Russell Keith-Magee
On Tue, Feb 10, 2009 at 1:59 AM, Devel63 wrote: > > I'll see if I can extract some small subset and post the details. > > In the meantime, more info: the problem only occurs when an error is > encountered during a call in which the server will return a > HttpResponse('', mimetype='text/xml; chars

Re: Exception in Django's Exception Handling

2009-02-09 Thread Devel63
I'll see if I can extract some small subset and post the details. In the meantime, more info: the problem only occurs when an error is encountered during a call in which the server will return a HttpResponse('', mimetype='text/xml; charset=utf-8') object in response to some AJAX request; things a

Re: Exception in Django's Exception Handling

2009-02-08 Thread Karen Tracey
On Sun, Feb 8, 2009 at 2:20 PM, Devel63 wrote: > > Django is raising an exception while trying to process an exception, > resulting in no stack traces ... for many different types of errors. > > It has the problem in debug.py, at this line under > technical_500_response: >return HttpResponseS

Re: Exception in Django's Exception Handling

2009-02-08 Thread Russell Keith-Magee
On Mon, Feb 9, 2009 at 4:20 AM, Devel63 wrote: > > Django is raising an exception while trying to process an exception, > resulting in no stack traces ... for many different types of errors. > > It has the problem in debug.py, at this line under > technical_500_response: >return HttpResponseS

Exception in Django's Exception Handling

2009-02-08 Thread Devel63
Django is raising an exception while trying to process an exception, resulting in no stack traces ... for many different types of errors. It has the problem in debug.py, at this line under technical_500_response: return HttpResponseServerError(t.render(c), mimetype='text/html') I have DEBUG=