From 0829a92050bada078fa6efb21a86c71c7390015d Mon Sep 17 00:00:00 2001 From: Evan Broder Date: Sat, 3 Jan 2009 18:43:43 -0500 Subject: [PATCH 1/1] Correct the incomplete fix from r1155 svn path=/trunk/packages/invirt-web/; revision=1958 --- code/cache_acls.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/cache_acls.py b/code/cache_acls.py index 7634b7e..8cd6977 100644 --- a/code/cache_acls.py +++ b/code/cache_acls.py @@ -11,7 +11,8 @@ def expandLocker(name): except getafsgroups.AfsProcessError, e: if e.message.startswith("fs: You don't have the required access rights on"): groups = [] - raise + else: + raise cell = getafsgroups.getCell(name) ans = set() for group in groups: -- 1.7.9.5