From: crouzet Date: Thu, 21 Mar 2019 10:08:15 +0000 (+0100) Subject: spns #16728 : correction d'une message d'erreur erroné qui prend beaucoup trop de... X-Git-Tag: 5.4.0~8 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=22e8fff3afde9323842ae75323e4b8fbb3db9fe8;p=tools%2Fsat.git spns #16728 : correction d'une message d'erreur erroné qui prend beaucoup trop de place! --- diff --git a/src/product.py b/src/product.py index 45afabc..4ae5d05 100644 --- a/src/product.py +++ b/src/product.py @@ -177,6 +177,7 @@ def get_product_config(config, product_name, with_install_dir=True): if depend in config.APPLICATION.products: prod_info.depend.append(depend,'') + # In case of a product get with a vcs, # put the tag (equal to the version) if prod_info is not None and prod_info.get_source in AVAILABLE_VCS: @@ -546,17 +547,10 @@ def add_compile_config_file(p_info, config): with open(aFile, 'w') as f: p_info.__save__(f, evaluated=True) # evaluated expressions mode except: - DBG.write("cannot evaluate product info - problem in file %s" % aFile, p_info, True) - # write DBG mode, as no problem if evaluation not possible - msg = """\ -# Some informations cannot be evaluated. -# for example: -# In the context of non VCS archives, information on git server is not available. + # sometime some information cannot be evaluated. + # for example, in the context of non VCS archives, information on git server is not available. + DBG.write("Warning : sat was not able to evaluate and write down some information in file %s" % aFile) -""" - with open(aFile, 'w') as f: - f.write(msg) - f.write(DBG.getStrConfigDbg(p_info)) def check_config_exists(config, prod_dir, prod_info, verbose=False): """\