From bf854ebd30974169f20e481b8f92be3ab832d337 Mon Sep 17 00:00:00 2001 From: Mathias Behrle Date: Thu, 10 Jul 2014 00:55:26 +0200 Subject: [PATCH] Fixing typo in documents/view.py. --- mayan/apps/documents/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/documents/views.py b/mayan/apps/documents/views.py index e96d15cde7..299f775e66 100644 --- a/mayan/apps/documents/views.py +++ b/mayan/apps/documents/views.py @@ -532,7 +532,7 @@ def document_missing_list(request): else: missing_id_list = [] for document in Document.objects.only('id',): - if not storate_backend.exists(document.file): + if not storage_backend.exists(document.file): missing_id_list.append(document.pk) return render_to_response('generic_list.html', {