From: yangyan Date: Wed, 22 Jan 2020 01:15:33 +0000 (+0800) Subject: Fix the pep8 error of unused variable X-Git-Tag: 1.3.7~10 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=147740a5d6786ffded3040efab8f445b6e3ac8eb;p=vfc%2Fgvnfm%2Fvnfmgr.git Fix the pep8 error of unused variable Change-Id: I08cce4c30a824086c0bd7abde18798e563303410 Issue-ID: VFC-1595 Signed-off-by: yangyan --- 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