From 9e9ee8bfdfb573b53b4319fd5c92d7a0f7d6ad34 Mon Sep 17 00:00:00 2001 From: Benoit Bryon Date: Thu, 22 Nov 2012 10:00:36 +0100 Subject: [PATCH] Minor precision about deserialization in views. --- django_downloadview/views.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/django_downloadview/views.py b/django_downloadview/views.py index f55f5b7..b258fc4 100644 --- a/django_downloadview/views.py +++ b/django_downloadview/views.py @@ -199,9 +199,9 @@ class ObjectDownloadView(DownloadMixin, BaseDetailView): The main one is ``file_field``. The other arguments are provided for convenience, in case your model holds - some metadata about the file, such as its basename, its modification time, - its MIME type... These fields may be particularly handy if your file - storage is not the local filesystem. + some (deserialized) metadata about the file, such as its basename, its + modification time, its MIME type... These fields may be particularly handy + if your file storage is not the local filesystem. """ #: Name of the model's attribute which contains the file to be streamed.