From: Eduardo Sousa Date: Thu, 6 Jun 2019 13:20:58 +0000 (+0100) Subject: Fix bug 743 X-Git-Tag: v6.0.0~10 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FNBI.git;a=commitdiff_plain;h=2bf65930958606064b41b9747dc22512e70523f7 Fix bug 743 Change-Id: I522e3df0e4263185ca334649a123907cae1b1a79 Signed-off-by: Eduardo Sousa --- diff --git a/osm_nbi/admin_topics.py b/osm_nbi/admin_topics.py index 968788a..45c2102 100644 --- a/osm_nbi/admin_topics.py +++ b/osm_nbi/admin_topics.py @@ -847,7 +847,7 @@ class RoleTopicAuth(BaseTopic): """ roles = self.auth.get_role_list() system_admin_role = [role for role in roles - if roles["name"] == "system_admin"][0] + if role["name"] == "system_admin"][0] if _id == system_admin_role["_id"]: raise EngineException("You cannot delete system_admin role", http_code=HTTPStatus.FORBIDDEN)