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

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