qa/bugzillaAutomation.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit eff6858842372e5297060d3e269560e1ea9995af
Author:     Xisco Fauli <[email protected]>
AuthorDate: Tue Nov 25 16:43:11 2025 +0100
Commit:     Xisco Fauli <[email protected]>
CommitDate: Tue Nov 25 16:44:18 2025 +0100

    bugzillaAutomation.py: replace " with '
    
    otherwise, the requests.post will fail
    
    Change-Id: I28365858fce950dfd0652aabd256d32d0e00bbbe

diff --git a/qa/bugzillaAutomation.py b/qa/bugzillaAutomation.py
index 14670d2d..3fb8b98d 100755
--- a/qa/bugzillaAutomation.py
+++ b/qa/bugzillaAutomation.py
@@ -182,7 +182,7 @@ def post_comment(statList, keyInStatList, commentId, 
comment, addFirstLine, chan
         if commentId not in rawData['bugs'][bugId]['comments'][-1]['text'] or \
                 
datetime.datetime.strptime(rawData['bugs'][bugId]['comments'][-1]['creation_time'],
 "%Y-%m-%dT%H:%M:%SZ") < cfg['untouchedPeriod']:
             if addFirstLine:
-                firstLine = "Dear " + creator + ",\n\n"
+                firstLine = "Dear " + creator.replace("\"", "'") + ",\n\n"
                 fullComment = firstLine + comment
             else:
                 fullComment = comment

Reply via email to