From: crouzet Date: Fri, 9 Dec 2022 15:47:49 +0000 (+0100) Subject: correction typo X-Git-Tag: V9_10_0 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=refs%2Fheads%2FV9_10_BR;p=tools%2Fsat.git correction typo --- 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 )