From 042d87b98c641514964497a26acf790a1f42880b Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 15 Sep 2007 04:52:48 +0000 Subject: [PATCH] Fixed #5483 -- Removed django.shortcuts.load_and_render, which was replaced a long time ago git-svn-id: http://code.djangoproject.com/svn/django/trunk@6257 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/shortcuts/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/django/shortcuts/__init__.py b/django/shortcuts/__init__.py index 2843a33646..611b997736 100644 --- a/django/shortcuts/__init__.py +++ b/django/shortcuts/__init__.py @@ -16,7 +16,6 @@ def render_to_response(*args, **kwargs): """ httpresponse_kwargs = {'mimetype': kwargs.pop('mimetype', None)} return HttpResponse(loader.render_to_string(*args, **kwargs), **httpresponse_kwargs) -load_and_render = render_to_response # For backwards compatibility. def _get_queryset(klass): """