Changes between Version 19 and Version 20 of BetterErrorMessages


Ignore:
Timestamp:
Feb 2, 2008, 12:13:28 PM (17 years ago)
Author:
Michael@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BetterErrorMessages

    v19 v20  
    3333
    3434 * Ticket #3221 -- patch for better error message for faulty URLconf
     35
     36{{{
     37  File "c:\django\django\core\urlresolvers.py", line 255, in _get_urlconf_module
     38    raise ImproperlyConfigured, "Error while importing URLconf %r: %s" % (self.urlconf_name, e)
     39
     40ImproperlyConfigured: Error while importing URLconf 'reports.urls': tuple index out of range
     41}}}
     42'''Context:''' A Trying to load my home page and it is evidently finding something wrong with my urls.py[[BR]]
     43'''Suggestion''': Output which tuple it is trying to index, and perhaps even the entire 'patterns'
     44
     45 * Ticket #6537 -- Unhelpful error message: 'tuple index out of range'
    3546
    3647== django.core.servers ==
Back to Top