Default to a NULL administrator, instead of the same as the owner
[invirt/packages/invirt-web.git] / code / cache_acls.py
index 1a23587..7634b7e 100644 (file)
@@ -42,7 +42,8 @@ def expandName(name):
 def accessList(m):
     people = set()
     people.update(expandLocker(m.owner))
-    people.update(expandName(m.administrator))
+    if m.administrator is not None:
+        people.update(expandName(m.administrator))
     return people
 
 def refreshMachine(m):