From 78d4fe59ea1c0e188475a39d7a260aface4bee2d Mon Sep 17 00:00:00 2001 From: Michael John Date: Sun, 2 Jun 2024 12:56:14 +0200 Subject: [PATCH] Use correct regex to avoid SyntaxWarning: invalid escape sequence '\.' Change-Id: I1c6179be294bf21c0897a3abf7e8ab1d270ae238 Signed-off-by: Galantsev, Dmitrii [ROCm/amdsmi commit: d9ccc441466a6edfee0e6a497b46c6959b2a0725] --- projects/amdsmi/amdsmi_cli/BDF.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/amdsmi/amdsmi_cli/BDF.py b/projects/amdsmi/amdsmi_cli/BDF.py index f9ffe338e5..d8d23ffa80 100644 --- a/projects/amdsmi/amdsmi_cli/BDF.py +++ b/projects/amdsmi/amdsmi_cli/BDF.py @@ -123,7 +123,7 @@ class BDF(): """Overrided the 'in' comparator in python""" passed_bdf = str(BDF(passed_bdf)) - bdf_regex = "(?:[0-6]?[0-9a-fA-F]{1,4}:)?[0-2]?[0-9a-fA-F]{1,2}:[0-9a-fA-F]{1,2}\.[0-7]" + bdf_regex = "(?:[0-6]?[0-9a-fA-F]{1,4}:)?[0-2]?[0-9a-fA-F]{1,2}:[0-9a-fA-F]{1,2}\\.[0-7]" for match in re.findall(bdf_regex, passed_bdf): if self == match: return True