diff options
author | yangyan <yangyanyj@chinamobile.com> | 2020-01-22 09:10:16 +0800 |
---|---|---|
committer | Yan Yang <yangyanyj@chinamobile.com> | 2020-01-22 01:11:59 +0000 |
commit | e5750ed94f4a3ab34be7cab59cf20052fcba0e0b (patch) | |
tree | f529d6465bd41217d4ab2a29a4b9232c6978c25a /res | |
parent | ce235287883a205b2ada7db816c639f884d6a982 (diff) |
Fix the pep8 error of unused variable
Change-Id: Ieb7b9405885036c11ae15f9b2c9395eab60d5227
Issue-ID: VFC-1595
Signed-off-by: yangyan <yangyanyj@chinamobile.com>
Diffstat (limited to 'res')
-rw-r--r-- | res/res/pub/utils/restcall.py | 1 |
1 files changed, 1 insertions, 0 deletions
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] |