All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-networking][PATCH] Fix escape sequence
@ 2021-10-18  2:02 George Liu
  0 siblings, 0 replies; only message in thread
From: George Liu @ 2021-10-18  2:02 UTC (permalink / raw)
  To: openembedded-devel; +Cc: raj.khem, joe, George Liu

Signed-off-by: George Liu <liuxiwei@inspur.com>
---
 meta-networking/recipes-daemons/ippool/ippool_1.3.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-networking/recipes-daemons/ippool/ippool_1.3.bb b/meta-networking/recipes-daemons/ippool/ippool_1.3.bb
index 19fbd0fa2..9b8317d7c 100644
--- a/meta-networking/recipes-daemons/ippool/ippool_1.3.bb
+++ b/meta-networking/recipes-daemons/ippool/ippool_1.3.bb
@@ -96,7 +96,7 @@ def get_ppp_version(d):
         return None
 
     bb.debug(1, "pppd plugin dir %s" % pppd_plugin)
-    r = re.compile("\d*\.\d*\.\d*")
+    r = re.compile(r'\d*\.\d*\.\d*')
     for f in os.listdir(pppd_plugin):
         if os.path.isdir(os.path.join(pppd_plugin, f)):
             ma = r.match(f)
-- 
2.30.2



^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-10-18  2:02 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-18  2:02 [meta-networking][PATCH] Fix escape sequence George Liu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.