X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/python-afs.git/blobdiff_plain/80e452e402f54de2b9bea9722e69022e16d17c7c..5f5cebd0db4f7c3723d5cf916f5d9d78eab87962:/afs/acl.py diff --git a/afs/acl.py b/afs/acl.py index d9a6df4..a245aa2 100644 --- a/afs/acl.py +++ b/afs/acl.py @@ -48,9 +48,9 @@ class ACL(object): self.pos = pos self.neg = neg @staticmethod - def retrieve(dir): + def retrieve(dir,follow=1): """Retrieve the ACL for an AFS directory""" - pos, neg = _parseAcl(_acl.getAcl(dir)) + pos, neg = _parseAcl(_acl.getAcl(dir, follow)) return ACL(pos, neg) def showRights(r):