mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Fixed #5732 -- Catch all possible errors when importing a URLConf file. This
leads to error messages that contain the name of the problem file (useful when the problem is part of an include() import). git-svn-id: http://code.djangoproject.com/svn/django/trunk@6584 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -249,8 +249,9 @@ class RegexURLResolver(object): | ||||
|         except AttributeError: | ||||
|             try: | ||||
|                 self._urlconf_module = __import__(self.urlconf_name, {}, {}, ['']) | ||||
|             except ValueError, e: | ||||
|                 # Invalid urlconf_name, such as "foo.bar." (note trailing period) | ||||
|             except Exception, e: | ||||
|                 # Either an invalid urlconf_name, such as "foo.bar.", or some | ||||
|                 # kind of problem during the actual import. | ||||
|                 raise ImproperlyConfigured, "Error while importing URLconf %r: %s" % (self.urlconf_name, e) | ||||
|             return self._urlconf_module | ||||
|     urlconf_module = property(_get_urlconf_module) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user