diff options
author | Russell Keith-Magee <russell@keith-magee.com> | 2009-04-04 06:54:56 +0000 |
---|---|---|
committer | Russell Keith-Magee <russell@keith-magee.com> | 2009-04-04 06:54:56 +0000 |
commit | ff166a3cdce99e93c97a19781b17d60e67d70f99 (patch) | |
tree | 26c21ad85b09268cdc850163b35da2a3a290a7fc /django/core/urlresolvers.py | |
parent | 2b1934ff3c3f80f58cc35bdcc03ae1b0ea6eb17e (diff) | |
download | django-ff166a3cdce99e93c97a19781b17d60e67d70f99.tar.gz |
Fixed #10065 -- Corrected an error message when an empty urlpattern object is provided. Thanks to Matthew Flanagan for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10385 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/core/urlresolvers.py')
-rw-r--r-- | django/core/urlresolvers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/urlresolvers.py b/django/core/urlresolvers.py index 042e0b81d5..ac83756f31 100644 --- a/django/core/urlresolvers.py +++ b/django/core/urlresolvers.py @@ -209,7 +209,7 @@ class RegexURLResolver(object): try: iter(patterns) except TypeError: - raise ImproperlyConfigured("The included urlconf %s doesn't have any" + raise ImproperlyConfigured("The included urlconf %s doesn't have any " "patterns in it" % self.urlconf_name) return patterns url_patterns = property(_get_url_patterns) |