From 60bf895c75956f7a91cad46f920a1ad0b86a2000 Mon Sep 17 00:00:00 2001 From: sousaedu Date: Thu, 8 Jul 2021 17:17:23 +0200 Subject: [PATCH 1/1] Fix bug 1587 - TypeError fix Fixes the formatting error reported by bug 1587. Change-Id: I00446760ce4ab781ef6ca783e3a5f3221c94a774 Signed-off-by: sousaedu --- osm_nbi/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osm_nbi/auth.py b/osm_nbi/auth.py index 6c9ee92..eef2ae7 100644 --- a/osm_nbi/auth.py +++ b/osm_nbi/auth.py @@ -502,7 +502,7 @@ class Authenticator: query_string_operations, item_id, ) - self.logger.info("RBAC_auth: {}", format(RBAC_auth)) + self.logger.info("RBAC_auth: {}".format(RBAC_auth)) token_info["allow_show_user_project_role"] = RBAC_auth return token_info -- 2.17.1