This is an automated email from the ASF dual-hosted git repository.

jleroux pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-plugins.git


The following commit(s) were added to refs/heads/trunk by this push:
     new eee69f9  Improved: Fix issues reported by  SonarQube analysis on 
Github (OFBIZ-12284)
eee69f9 is described below

commit eee69f91c5a069e63efea14ac91a065b9e9b00f3
Author: Jacques Le Roux <jacques.le.r...@les7arts.com>
AuthorDate: Fri Aug 6 17:47:21 2021 +0200

    Improved: Fix issues reported by  SonarQube analysis on Github (OFBIZ-12284)
    
    Fixes a possible http issue (not a big deal)
---
 scrum/data/hookscripts/commit.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scrum/data/hookscripts/commit.py b/scrum/data/hookscripts/commit.py
index 3dbd991..515ab97 100644
--- a/scrum/data/hookscripts/commit.py
+++ b/scrum/data/hookscripts/commit.py
@@ -137,7 +137,7 @@ if REPOS and REV:
         doc = Document()
         soapenv = doc.createElement("soapenv:Envelope")
         doc.appendChild(soapenv)
-        soapenv.setAttribute("xmlns:soapenv", 
"http://schemas.xmlsoap.org/soap/envelope/";)
+        soapenv.setAttribute("xmlns:soapenv", 
"https://schemas.xmlsoap.org/soap/envelope/";)
         soapenv.setAttribute("xmlns:ser", OFBIZ_WEBSERVICE_URL)
         
         header = doc.createElement("soapenv:Header")

Reply via email to