From cc063ced24cb1986d5a2814fb53d5eefda7e9872 Mon Sep 17 00:00:00 2001 From: David Caplan Date: Fri, 11 Oct 2013 16:07:58 -0400 Subject: [PATCH] fix import for AbstractApplication in extending application model docs --- docs/extending_application.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extending_application.rst b/docs/extending_application.rst index 4e0e8b4e1..f1649d0cd 100644 --- a/docs/extending_application.rst +++ b/docs/extending_application.rst @@ -28,7 +28,7 @@ your Django app (provided that your app is in the list of the INSTALLED_APPS in module):: from django.db import models - from oauth2_provider import AbstractApplication + from oauth2_provider.models import AbstractApplication class MyApplication(AbstractApplication): logo = models.ImageField()