From: yangyan Date: Wed, 22 Jan 2020 01:10:16 +0000 (+0800) Subject: Fix the pep8 error of unused variable X-Git-Tag: 1.3.7~9 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=e5750ed94f4a3ab34be7cab59cf20052fcba0e0b;p=vfc%2Fgvnfm%2Fvnfres.git Fix the pep8 error of unused variable Change-Id: Ieb7b9405885036c11ae15f9b2c9395eab60d5227 Issue-ID: VFC-1595 Signed-off-by: yangyan --- diff --git a/res/res/pub/utils/restcall.py b/res/res/pub/utils/restcall.py index 852bf0b..a609a9a 100644 --- a/res/res/pub/utils/restcall.py +++ b/res/res/pub/utils/restcall.py @@ -69,6 +69,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) except: logger.error(traceback.format_exc()) ret = [4, str(sys.exc_info()), resp_status]