From cdb422a41082c26fade7730ac0fa0fb7458f845b Mon Sep 17 00:00:00 2001 From: crouzet Date: Mon, 8 Feb 2021 15:44:21 +0100 Subject: [PATCH] =?utf8?q?patch=20pour=20g=C3=A9rer=20les=20/=20dans=20les?= =?utf8?q?=20nom=20de=20branche?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/product.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/product.py b/src/product.py index 7d354c4..c5e956b 100644 --- a/src/product.py +++ b/src/product.py @@ -165,7 +165,7 @@ def get_product_config(config, product_name, with_install_dir=True): # substitute some character with _ in order to get the correct definition # in config.PRODUCTS. This is done because the pyconf tool does not handle # the . and - characters - for c in ".-": vv = vv.replace(c, "_") + for c in ".-/": vv = vv.replace(c, "_") prod_info = None if product_name in config.PRODUCTS: -- 2.39.2