Merge pull request #186 from kuno/master

fixed import path typo in django document
This commit is contained in:
Ross Lawley 2011-06-07 06:37:34 -07:00
commit 1ee50922d9

View File

@ -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!')