From 36805b354046872b0adc36ece07501b71dd67bd1 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 8 Oct 2015 19:33:44 -0400 Subject: [PATCH] Fix typo in ACL title translation code. Fixes issue GL#201. --- mayan/apps/acls/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mayan/apps/acls/views.py b/mayan/apps/acls/views.py index 4d45206095..ec9953f0e9 100644 --- a/mayan/apps/acls/views.py +++ b/mayan/apps/acls/views.py @@ -104,8 +104,8 @@ class ACLCreateView(SingleObjectCreateView): return { 'object': self.content_object, 'title': _( - 'New access control lists for: %s' % self.content_object - ), + 'New access control lists for: %s' + ) % self.content_object }