| Index: appengine/config_service/api.py
|
| diff --git a/appengine/config_service/api.py b/appengine/config_service/api.py
|
| index c3a75655cc32f3b9cc6458104a648c454138c4c7..517ba5db37a8b7a32894c9d4abb6f6e21ee5a327 100644
|
| --- a/appengine/config_service/api.py
|
| +++ b/appengine/config_service/api.py
|
| @@ -373,7 +373,7 @@ class ConfigApi(remote.Service):
|
| @auth.public # ACL check inside
|
| def reimport(self, request):
|
| """Reimports a config set."""
|
| - if not auth.is_admin():
|
| + if not acl.is_admin():
|
| raise endpoints.ForbiddenException('Only admins are allowed to do this')
|
| # Assume it is Gitiles.
|
| try:
|
|
|