Commit bda745b3 authored by matejcik's avatar matejcik

group_acl: line too long

parent f55b068b
......@@ -38,7 +38,9 @@ class GroupACL(models.Model):
def clean(self):
if not self.project and not self.subproject and not self.language:
raise ValidationError(_('Project, subproject or language must be specified'))
raise ValidationError(
_('Project, subproject or language must be specified')
)
# ignore project if subproject is set
if self.project and self.subproject:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment