From aea38818318fcc539f59d9954619e261ce554875 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 7 Jan 2015 03:45:34 -0400 Subject: [PATCH] Fix casing --- 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 b6b6d2c3b4..ac20aa410e 100644 --- a/mayan/apps/documents/views.py +++ b/mayan/apps/documents/views.py @@ -950,7 +950,7 @@ def document_type_filename_list(request, document_type_id): context = { 'object_list': document_type.filenames.all(), - 'title': _(u'filenames for document type: %s') % document_type, + 'title': _(u'Filenames for document type: %s') % document_type, 'navigation_object_name': 'document_type', 'document_type': document_type, 'list_object_variable_name': 'filename',