[PATCH 1/2] rteval: services.py: Fix SyntaxWarning

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



In services.py we get a SyntaxWarning: invalid escape sequence '\('
using python >= 3.12

Fix this by using a raw string.

Signed-off-by: John Kacur <jkacur@xxxxxxxxxx>
---
 rteval/sysinfo/services.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rteval/sysinfo/services.py b/rteval/sysinfo/services.py
index e98017804841..c3c155354e07 100644
--- a/rteval/sysinfo/services.py
+++ b/rteval/sysinfo/services.py
@@ -42,7 +42,7 @@ class SystemServices:
             servicename = os.path.basename(service)
             if not [1 for p in reject if fnmatch.fnmatch(servicename, p)] \
                     and os.access(service, os.X_OK):
-                cmd = f'{getcmdpath("grep")} -qs "\(^\|\W\)status)" {service}'
+                cmd = fr'{getcmdpath("grep")} -qs "\(^\|\W\)status)" {service}'
                 c = subprocess.Popen(cmd, shell=True, encoding='utf-8')
                 c.wait()
                 if c.returncode == 0:
-- 
2.49.0





[Index of Archives]     [RT Stable]     [Kernel Newbies]     [IDE]     [Security]     [Git]     [Netfilter]     [Bugtraq]     [Yosemite]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux ATA RAID]     [Samba]     [Video 4 Linux]     [Device Mapper]

  Powered by Linux