diff options
| author | tom christie tom@tomchristie.com | 2011-02-19 10:47:26 +0000 |
|---|---|---|
| committer | tom christie tom@tomchristie.com | 2011-02-19 10:47:26 +0000 |
| commit | 57b3a372f2122d022f9d6f43818e5fe9d318ce03 (patch) | |
| tree | eb667e2de5681d1886d5119b5d4092b12cd24524 /djangorestframework/emitters.py | |
| parent | 805aa03ec1871f6a766d9052b348ddce9e9843c3 (diff) | |
| download | django-rest-framework-57b3a372f2122d022f9d6f43818e5fe9d318ce03.tar.bz2 | |
Move status codes into seperate module
Diffstat (limited to 'djangorestframework/emitters.py')
| -rw-r--r-- | djangorestframework/emitters.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/djangorestframework/emitters.py b/djangorestframework/emitters.py index e6129b4f..6e101e86 100644 --- a/djangorestframework/emitters.py +++ b/djangorestframework/emitters.py @@ -8,13 +8,14 @@ from django.http import HttpResponse from django.template import RequestContext, loader from django import forms -from djangorestframework.response import NoContent, ResponseException, status +from djangorestframework.response import NoContent, ResponseException from djangorestframework.validators import FormValidatorMixin from djangorestframework.utils import dict2xml, url_resolves from djangorestframework.markdownwrapper import apply_markdown from djangorestframework.breadcrumbs import get_breadcrumbs from djangorestframework.content import OverloadedContentMixin from djangorestframework.description import get_name, get_description +from djangorestframework import status from urllib import quote_plus import string |
