mirror of
				https://github.com/django/django.git
				synced 2025-10-30 17:16:10 +00:00 
			
		
		
		
	More django.conf.urls.defaults removals. Refs #17132
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17049 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -336,7 +336,7 @@ class RegexURLResolver(LocaleRegexProvider): | |||||||
|         callback = getattr(self.urlconf_module, 'handler%s' % view_type, None) |         callback = getattr(self.urlconf_module, 'handler%s' % view_type, None) | ||||||
|         if not callback: |         if not callback: | ||||||
|             # No handler specified in file; use default |             # No handler specified in file; use default | ||||||
|             # Lazy import, since urls.defaults imports this file |             # Lazy import, since django.urls imports this file | ||||||
|             from django.conf import urls |             from django.conf import urls | ||||||
|             callback = getattr(urls, 'handler%s' % view_type) |             callback = getattr(urls, 'handler%s' % view_type) | ||||||
|         return get_callable(callback), {} |         return get_callable(callback), {} | ||||||
|   | |||||||
| @@ -31,7 +31,7 @@ class ActionAdmin(admin.ModelAdmin): | |||||||
|     def get_urls(self): |     def get_urls(self): | ||||||
|         # Add the URL of our custom 'add_view' view to the front of the URLs |         # Add the URL of our custom 'add_view' view to the front of the URLs | ||||||
|         # list.  Remove the existing one(s) first |         # list.  Remove the existing one(s) first | ||||||
|         from django.conf.urls.defaults import patterns, url |         from django.conf.urls import patterns, url | ||||||
|  |  | ||||||
|         def wrap(view): |         def wrap(view): | ||||||
|             def wrapper(*args, **kwargs): |             def wrapper(*args, **kwargs): | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user