diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-09-15 04:52:48 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-09-15 04:52:48 +0000 |
| commit | 042d87b98c641514964497a26acf790a1f42880b (patch) | |
| tree | 1a01ffa27d3ed066fb0e2e9202d2d17e1fde7fcd | |
| parent | 5ce8a389332f289bd99e95978154c790f35f2405 (diff) | |
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
| -rw-r--r-- | django/shortcuts/__init__.py | 1 |
1 files changed, 0 insertions, 1 deletions
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): """ |
