diff options
| author | Tom Christie | 2013-04-29 12:45:00 +0100 | 
|---|---|---|
| committer | Tom Christie | 2013-04-29 12:45:00 +0100 | 
| commit | dc7b1d643020cac5d585aac42f98962cc7aa6bf7 (patch) | |
| tree | af73e602942e2b566580be7c3827c034c2c3cca4 /rest_framework/routers.py | |
| parent | 70831ad0bb62e88ef93e8c1815444ac709eb9883 (diff) | |
| download | django-rest-framework-dc7b1d643020cac5d585aac42f98962cc7aa6bf7.tar.bz2 | |
2.2's PendingDeprecationWarnings now become DeprecationWarnings.  2.3's PendingDeprecationWarnings added.
Diffstat (limited to 'rest_framework/routers.py')
| -rw-r--r-- | rest_framework/routers.py | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/rest_framework/routers.py b/rest_framework/routers.py index 33e88a81..2bbf519c 100644 --- a/rest_framework/routers.py +++ b/rest_framework/routers.py @@ -13,6 +13,8 @@ For example, you might have a `urls.py` that looks something like this:      urlpatterns = router.urls  """ +from __future__ import unicode_literals +  from collections import namedtuple  from django.conf.urls import url, patterns  from django.db import models | 
