From f527042f132d70a36955170652a81182d4884c11 Mon Sep 17 00:00:00 2001 From: Jonathan Reed Date: Fri, 13 Nov 2009 17:03:56 -0500 Subject: [PATCH 1/1] Remove extra 'w' from canonical strings for 'write' and 'all Signed-off-by: Jonathan Reed --- afs/acl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/afs/acl.py b/afs/acl.py index 1fb1dac..c49f374 100644 --- a/afs/acl.py +++ b/afs/acl.py @@ -5,8 +5,8 @@ from _acl import getCallerAccess _canonical = { "read": "rl", - "write": "rwlidwk", - "all": "rwlidwka", + "write": "rlidwk", + "all": "rlidwka", "mail": "lik", "none": "", } -- 1.7.9.5