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

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