From d63bf0abde50b50ef091426aa0cef9b1646ed308 Mon Sep 17 00:00:00 2001 From: kuno Date: Tue, 7 Jun 2011 20:19:29 +0800 Subject: [PATCH] fixed import path typo in django documents --- docs/django.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/django.rst b/docs/django.rst index 8a490571..bbfbb565 100644 --- a/docs/django.rst +++ b/docs/django.rst @@ -52,7 +52,7 @@ it is useful to have a Django file storage backend that wraps this. The new storage module is called :class:`~mongoengine.django.GridFSStorage`. Using it is very similar to using the default FileSystemStorage.:: - fs = mongoengine.django.GridFSStorage() + fs = mongoengine.django.storage.GridFSStorage() filename = fs.save('hello.txt', 'Hello, World!')