Fix typo in ACL title translation code. Fixes issue GL#201.

This commit is contained in:
Roberto Rosario
2015-10-08 19:33:44 -04:00
parent 27da0f8bb2
commit 36805b3540

View File

@@ -104,8 +104,8 @@ class ACLCreateView(SingleObjectCreateView):
return { return {
'object': self.content_object, 'object': self.content_object,
'title': _( 'title': _(
'New access control lists for: %s' % self.content_object 'New access control lists for: %s'
), ) % self.content_object
} }