diff --git a/hb_internal/set/set.py b/hb_internal/set/set.py index 2fdc7ae846bfad8d22833f26e87eaf0145d074c3..c0619e97933ce31fbb3c4866a7269a282ad9b050 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)