Changes between Version 18 and Version 19 of BetterErrorMessages


Ignore:
Timestamp:
Mar 9, 2007, 12:27:05 PM (18 years ago)
Author:
Marek Kubica <pythonmailing@…>
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BetterErrorMessages

    v18 v19  
    3434 * Ticket #3221 -- patch for better error message for faulty URLconf
    3535
     36== django.core.servers ==
     37
     38{{{
     39AttributeError: WSGIRequestHandler instance has no attribute 'path'
     40}}}
     41'''Context:''' This error gets raised when a server started by runserver is (by accident) accessed via `https://`. [http://thinkhole.org/wp/2007/03/01/django-wsgirequesthandler-error/ Details here].[[BR]]
     42'''Suggestion:''' runserver does not support https, please use it only via http.
    3643
    3744== django.db ==
Back to Top