From 147740a5d6786ffded3040efab8f445b6e3ac8eb Mon Sep 17 00:00:00 2001 From: yangyan Date: Wed, 22 Jan 2020 09:15:33 +0800 Subject: Fix the pep8 error of unused variable Change-Id: I08cce4c30a824086c0bd7abde18798e563303410 Issue-ID: VFC-1595 Signed-off-by: yangyan --- mgr/mgr/pub/utils/restcall.py | 1 + 1 file changed, 1 insertion(+) (limited to 'mgr') diff --git a/mgr/mgr/pub/utils/restcall.py b/mgr/mgr/pub/utils/restcall.py index 3e948a2..567361b 100644 --- a/mgr/mgr/pub/utils/restcall.py +++ b/mgr/mgr/pub/utils/restcall.py @@ -70,6 +70,7 @@ def call_req(base_url, user, passwd, auth_type, resource, method, content=''): if 'httplib.ResponseNotReady' in res_info: res_info = "The URL[%s] request failed or is not responding." % full_url ret = [3, res_info, resp_status] + logger.debug(ex) logger.debug("[%s]ret=%s" % (callid, str(ret))) return ret -- cgit 1.2.3-korg