Commit fc8a5345 by Dan Krause

Merge pull request #103 from dankrause/master

Make ACL default to master key only
parents a9c347f1 4773ed7a
...@@ -253,8 +253,8 @@ class ACL(ParseType): ...@@ -253,8 +253,8 @@ class ACL(ParseType):
def from_native(cls, **kw): def from_native(cls, **kw):
return cls(kw) return cls(kw)
def __init__(self, acl): def __init__(self, acl=None):
self._acl = acl self._acl = acl or {}
def _to_native(self): def _to_native(self):
return self._acl 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