From dca4e5657fdd2cc578439a48318a0840560307f7 Mon Sep 17 00:00:00 2001 From: crouzet Date: Fri, 1 Feb 2019 12:24:45 +0100 Subject: [PATCH] =?utf8?q?correction=20bug=20(dans=20dev=20pour=20sat=20#1?= =?utf8?q?2087)=20break=20au=20lieu=20de=20continue=20:=20seul=20le=20prem?= =?utf8?q?ier=20match=20=C3=A9tait=20s=C3=A9lectionn=C3=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/__init__.py b/src/__init__.py index dd6d646..02f27a6 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -147,7 +147,7 @@ def getProductNames(cfg, wildcards, logger): if len(filtered) > 0: res.append(prod) ok = True - break + continue if not ok: notFound[wild] = None if len(res) == 0: -- 2.30.2