Rename MyException to something reasonable.
authorEric Price <ecprice@mit.edu>
Mon, 14 Apr 2008 03:59:50 +0000 (23:59 -0400)
committerEric Price <ecprice@mit.edu>
Mon, 14 Apr 2008 03:59:50 +0000 (23:59 -0400)
svn path=/trunk/packages/sipb-xen-www/; revision=409

code/getafsgroups.py

index 9e0f31f..e71ede4 100644 (file)
@@ -25,7 +25,7 @@ from webcommon import InvalidInput
 #             return True
 #     return False
 
-class MyException(Exception):
+class AfsProcessError(Exception):
     pass
 
 def getAfsGroupMembers(group, cell):
@@ -50,14 +50,14 @@ def getCell(locker):
     p = subprocess.Popen(["fs", "whichcell", getLockerPath(locker)], 
                          stdout=subprocess.PIPE, stderr=subprocess.PIPE)
     if p.wait():
-        raise MyException(p.stderr.read())
+        raise AfsProcessError(p.stderr.read())
     return p.stdout.read().split()[-1][1:-1]
 
 def getLockerAcl(locker):
     p = subprocess.Popen(["fs", "listacl", getLockerPath(locker)], 
                          stdout=subprocess.PIPE, stderr=subprocess.PIPE)
     if p.wait():
-        raise MyException(p.stderr.read())
+        raise AfsProcessError(p.stderr.read())
     lines = p.stdout.readlines()
     values = []
     for line in lines[1:]:
@@ -78,7 +78,7 @@ def notLockerOwner(user, locker):
     try:
         cell = getCell(locker)
         values = getLockerAcl(locker)
-    except MyException, e:
+    except AfsProcessError, e:
         return str(e)
 
     for entry in values: