From 0e12444c0504754e9a56634c93acb56eeeb46b4b Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 17 Oct 2014 18:13:24 -0400 Subject: [PATCH] Add missing parenthesis --- mayan/apps/tags/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/tags/views.py b/mayan/apps/tags/views.py index 5bb500138f..8fee602b67 100644 --- a/mayan/apps/tags/views.py +++ b/mayan/apps/tags/views.py @@ -237,7 +237,7 @@ class TagTaggedItemListView(DocumentListView): return get_object_or_404(Tag, pk=self.kwargs['pk']) def get_queryset(self): - return self.get_tag.documents.all() + return self.get_tag().documents.all() def get_extra_context(self): return {