mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	Fixed #2048 - get_object_or_404 now allows *args as well. Thanks, Joeboy
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3014 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -10,9 +10,9 @@ def render_to_response(*args, **kwargs): | ||||
|     return HttpResponse(loader.render_to_string(*args, **kwargs)) | ||||
| load_and_render = render_to_response # For backwards compatibility. | ||||
|  | ||||
| def get_object_or_404(klass, **kwargs): | ||||
| def get_object_or_404(klass, *args, **kwargs): | ||||
|     try: | ||||
|         return klass._default_manager.get(**kwargs) | ||||
|         return klass._default_manager.get(*args, **kwargs) | ||||
|     except klass.DoesNotExist: | ||||
|         raise Http404 | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user