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', {