We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The following test:
acl = acl or self.default_object_acl
should test for None instead:
if acl is None: acl = self.default_object_acl
This bug prevents 'clear_default_object_acl' from working (calling it just saves the existing ACL).
The following test:
should test for None instead:
This bug prevents 'clear_default_object_acl' from working (calling it just saves the existing ACL).