Changes between Version 52 and Version 53 of BetterErrorMessages


Ignore:
Timestamp:
Feb 24, 2014, 11:36:45 AM (10 years ago)
Author:
ANUBHAV JOSHI
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BetterErrorMessages

    v52 v53  
    6666'''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]]
    6767'''Suggestion:''' runserver does not support https, please use it only via http.
    68 
    69 
    70 == django.core.urlresolver ==
    71 
    72 {{{
    73 ImproperlyConfigured: The included urlconf %s doesn't have any patterns in it.
    74 }}}
    75 
    76 Uninformative foremost as '''%s''' is top-level urls (problem usually in included urls).
    77 
    78 Caused by using '''reverse''' rather than '''reverse_lazy''' in some view.
    79 
    80 No feedback whatsoever is given as to:
    81 - that the error is caused by view rather than url
    82 - which view this might be, or even which app it is in.
    83 
    84 
    85 '''Context:''' You get this error starting the developer server. The error is cached (#11712) and fixing it doesn't make the error go away adding to the confusion.[[BR]]
    86 '''Suggestion:''' At least more specificity as to where the error lies.
    87 
    88 Related tickets:
    89 
    90 - https://code.djangoproject.com/ticket/17084
    91 - https://code.djangoproject.com/ticket/15685
    92 - https://code.djangoproject.com/ticket/11712 
    9368
    9469== django.db ==
Back to Top