From e17e71a96aa6876df70505bf4c0751b9f16b1a20 Mon Sep 17 00:00:00 2001 From: lklake Date: Wed, 6 Apr 2022 16:31:10 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=AD=A3=E8=AE=BE=E7=BD=AE=E4=BA=A7?= =?UTF-8?q?=E5=93=81=E6=97=B6=E5=8F=82=E6=95=B0=E7=9A=84=E9=80=BB=E8=BE=91?= =?UTF-8?q?=E5=88=A4=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: lklake --- hb_internal/set/set.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hb_internal/set/set.py b/hb_internal/set/set.py index 2fdc7ae..c0619e9 100644 --- a/hb_internal/set/set.py +++ b/hb_internal/set/set.py @@ -60,7 +60,7 @@ def set_root_path(root_path=None): def set_product(product_name=None, company=None): if product_name is None and company is None: product_info = Product.product_menuconfig() - elif product_name is None: + elif company is None: product_info = Product.get_product_info(product_name) else: product_info = Product.get_product_info(product_name, company) -- Gitee