From: Evan Broder Date: Fri, 27 Feb 2009 20:48:19 +0000 (-0500) Subject: Use the newly globalized adminacl instead of the old web.adminacl. X-Git-Tag: 0.0.21~3 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/commitdiff_plain/ee5742efe3b81be4e187b06b7e64faee28e9d3b8 Use the newly globalized adminacl instead of the old web.adminacl. svn path=/trunk/packages/invirt-web/; revision=2217 --- diff --git a/code/main.py b/code/main.py index e119e0e..6fdd31a 100755 --- a/code/main.py +++ b/code/main.py @@ -615,9 +615,9 @@ def admin(username, state, path, fields): return ({'Status': '303 See Other', 'Location': 'admin/'}, "You shouldn't see this message.") - if not username in getAfsGroupMembers(config.web.adminacl, 'athena.mit.edu'): + if not username in getAfsGroupMembers(config.adminacl, 'athena.mit.edu'): raise InvalidInput('username', username, - 'Not in admin group %s.' % config.web.adminacl) + 'Not in admin group %s.' % config.adminacl) newstate = State(username, isadmin=True) newstate.environ = state.environ return handler(username, newstate, path, fields)