aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/authtoken
diff options
context:
space:
mode:
authorTom Christie2013-07-09 13:12:28 +0100
committerTom Christie2013-07-09 13:12:28 +0100
commit3032a06c9bd8cc98387b14f7feceb1f5d76041fd (patch)
tree1ff856b04c6748238f71eaaab36adbfe3acfcc47 /rest_framework/authtoken
parentbafc06e19c68b1e2bc1b649eecb9c9735ff9f8c2 (diff)
downloaddjango-rest-framework-3032a06c9bd8cc98387b14f7feceb1f5d76041fd.tar.bz2
Use absolute import style
Diffstat (limited to 'rest_framework/authtoken')
-rw-r--r--rest_framework/authtoken/admin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rest_framework/authtoken/admin.py b/rest_framework/authtoken/admin.py
index 0d948160..ec28eb1c 100644
--- a/rest_framework/authtoken/admin.py
+++ b/rest_framework/authtoken/admin.py
@@ -1,5 +1,5 @@
from django.contrib import admin
-from .models import Token
+from rest_framework.authtoken.models import Token
class TokenAdmin(admin.ModelAdmin):