From d4313f3f621c6bcbf4109b20245f722a3e9b6b8d Mon Sep 17 00:00:00 2001 From: Michael Dürre Date: Thu, 14 Mar 2024 07:48:48 +0100 Subject: migrate parents to potassium-sr2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix migrate script. update odl versions Issue-ID: CCSDK-3990 Change-Id: I311a2445ffb8065cf13d2ab8fbf75986b6eba04f Signed-off-by: Michael Dürre --- tools/lib/pomfile.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tools/lib/pomfile.py') diff --git a/tools/lib/pomfile.py b/tools/lib/pomfile.py index 88bfa90e..c73fbc82 100644 --- a/tools/lib/pomfile.py +++ b/tools/lib/pomfile.py @@ -35,10 +35,11 @@ class PomFile: # value: value to set def setXmlValue(self, valuePath, value, replaceMultiple=False) -> bool: if value is None: + print("unable to set {} to {} in {}: {}".format(valuePath, value, self.filename, str(False))) return False found=False pathToFind = XPath(valuePath) - pattern = re.compile('<([^>^\ ^?^!]+)') + pattern = re.compile('<([^>^\ ^?^!]+(\ \/)?)') curPath=XPath() curParent=None isComment=False -- cgit 1.2.3-korg