Ticket #10065: urlconfexception.diff
File urlconfexception.diff, 582 bytes (added by , 16 years ago) |
---|
-
django/core/urlresolvers.py
206 206 try: 207 207 iter(patterns) 208 208 except TypeError: 209 raise ImproperlyConfigured("The included urlconf %s doesn't have any "209 raise ImproperlyConfigured("The included urlconf %s doesn't have any " 210 210 "patterns in it" % self.urlconf_name) 211 211 return patterns 212 212 url_patterns = property(_get_url_patterns)