Blame SOURCES/0004-Analyzer-Fix-escaping-raw-fstring.patch

a0be52
From f90205831c44cc2849c7221e5117b6af808411c3 Mon Sep 17 00:00:00 2001
a0be52
From: Justin Stephenson <jstephen@redhat.com>
a0be52
Date: Thu, 14 Jul 2022 11:21:04 -0400
a0be52
Subject: [PATCH] Analyzer: Fix escaping raw fstring
a0be52
a0be52
Reviewed-by: Alexey Tikhonov <atikhono@redhat.com>
a0be52
Reviewed-by: Iker Pedrosa <ipedrosa@redhat.com>
a0be52
(cherry picked from commit 3d8622031b5240e215201aae1f9c9d05624cca19)
a0be52
---
a0be52
 src/tools/analyzer/modules/request.py | 4 ++--
a0be52
 1 file changed, 2 insertions(+), 2 deletions(-)
a0be52
a0be52
diff --git a/src/tools/analyzer/modules/request.py b/src/tools/analyzer/modules/request.py
a0be52
index b8dd9b25c..935e13adc 100644
a0be52
--- a/src/tools/analyzer/modules/request.py
a0be52
+++ b/src/tools/analyzer/modules/request.py
a0be52
@@ -243,8 +243,8 @@ class RequestAnalyzer:
a0be52
         be_results = False
a0be52
         component = source.Component.NSS
a0be52
         resp = "nss"
a0be52
-        pattern = [rf'REQ_TRACE.*\[CID #{cid}\\]']
a0be52
-        pattern.append(rf"\[CID#{cid}\\]")
a0be52
+        pattern = [rf'REQ_TRACE.*\[CID #{cid}\]']
a0be52
+        pattern.append(rf"\[CID#{cid}\]")
a0be52
 
a0be52
         if args.pam:
a0be52
             component = source.Component.PAM
a0be52
-- 
a0be52
2.37.1
a0be52