From e857a6a9d3d9c9523139dbffc38ca6bed86abf9b Mon Sep 17 00:00:00 2001 From: zt <1450026690@qq.com> Date: Wed, 2 Sep 2020 19:54:17 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=9C=AA=E6=89=BE=E5=88=B0?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E7=9A=84=E5=8F=98=E9=87=8F=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../application/apps/package/function/build_depend.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packageship/packageship/application/apps/package/function/build_depend.py b/packageship/packageship/application/apps/package/function/build_depend.py index 95cd4633..81fb4bad 100644 --- a/packageship/packageship/application/apps/package/function/build_depend.py +++ b/packageship/packageship/application/apps/package/function/build_depend.py @@ -78,8 +78,8 @@ class BuildDepend(): ResponseCode: response code Raises: """ - res_status, build_list, not_fd_build = self.search_db.get_build_depend(pkg_list) - self.not_found_components.update(not_fd_build) + res_status, build_list, not_fd_com_build = self.search_db.get_build_depend(pkg_list) + self.not_found_components.update(not_fd_com_build) if not build_list: return res_status if res_status == ResponseCode.DIS_CONNECTION_DB else \ ResponseCode.PACK_NAME_NOT_FOUND @@ -87,10 +87,10 @@ class BuildDepend(): # create root node and get next search list search_list = self._create_node_and_get_search_list(build_list, pkg_list) - code, res_dict, not_fd_install = \ + code, res_dict, not_fd_com_install = \ InstallDepend(self.db_list).query_install_depend(search_list, self.history_dicts) - self.not_found_components.update(not_fd_install) + self.not_found_components.update(not_fd_com_install) if not res_dict: return code -- GitLab