From eec8e62ecb9fb0e07215f775242cf19a885ce37d Mon Sep 17 00:00:00 2001 From: crouzet Date: Fri, 9 Dec 2022 16:47:49 +0100 Subject: [PATCH] correction typo --- src/product.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/product.py b/src/product.py index e1c5893..6f8e28d 100644 --- a/src/product.py +++ b/src/product.py @@ -1154,7 +1154,7 @@ def product_has_post_script(product_info): :return: True if the product has one or more patches :rtype: boolean """ - is src.architecture.is_windows(): + if src.architecture.is_windows(): # post install scripts are not necessary on windows return False res = ( "post_script" in product_info and len(product_info.post_script) > 0 ) -- 2.39.2