Commit 4773ed7a by Dan Krause

Make ACL default to master key only

parent a9c347f1
......@@ -253,8 +253,8 @@ class ACL(ParseType):
def from_native(cls, **kw):
return cls(kw)
def __init__(self, acl):
self._acl = acl
def __init__(self, acl=None):
self._acl = acl or {}
def _to_native(self):
return self._acl
......
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