| Index: appengine/cr-buildbucket/acl.py
|
| diff --git a/appengine/cr-buildbucket/acl.py b/appengine/cr-buildbucket/acl.py
|
| index 32a35bcb3948be167f931649cae86746b7278c2d..1d3b183100a2291275c04dd66abc2dfc17c1a3d2 100644
|
| --- a/appengine/cr-buildbucket/acl.py
|
| +++ b/appengine/cr-buildbucket/acl.py
|
| @@ -115,7 +115,7 @@ def has_any_of_roles_async(bucket, roles):
|
| if auth.is_admin():
|
| raise ndb.Return(True)
|
|
|
| - bucket_cfg = yield config.get_bucket_async(bucket)
|
| + _, bucket_cfg = yield config.get_bucket_async(bucket)
|
| identity_str = auth.get_current_identity().to_bytes()
|
| if bucket_cfg:
|
| for rule in bucket_cfg.acls:
|
|
|