aboutsummaryrefslogtreecommitdiffstats
path: root/examples/mixin
diff options
context:
space:
mode:
authorTom Christie2012-02-21 20:47:55 +0000
committerTom Christie2012-02-21 20:47:55 +0000
commitca9465f11e3310b7b1e18cd893e96b69963f68c9 (patch)
treef6e0221b7ed7d5156962099444350d2018bf1aac /examples/mixin
parentb7c06dd8e37fa88ec055831b650967d76e1b78af (diff)
downloaddjango-rest-framework-ca9465f11e3310b7b1e18cd893e96b69963f68c9.tar.bz2
reverse gets it's own module
Diffstat (limited to 'examples/mixin')
-rw-r--r--examples/mixin/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/mixin/urls.py b/examples/mixin/urls.py
index 1f8c93b2..9652cfda 100644
--- a/examples/mixin/urls.py
+++ b/examples/mixin/urls.py
@@ -2,7 +2,7 @@ from djangorestframework.compat import View # Use Django 1.3's django.views.gen
from djangorestframework.mixins import ResponseMixin
from djangorestframework.renderers import DEFAULT_RENDERERS
from djangorestframework.response import Response
-from djangorestframework.utils import reverse
+from djangorestframework.reverse import reverse
from django.conf.urls.defaults import patterns, url