You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datalab.apache.org by lf...@apache.org on 2021/08/25 12:09:10 UTC

[incubator-datalab] branch DATALAB-1864 created (now a36906b)

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

lfrolov pushed a change to branch DATALAB-1864
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git.


      at a36906b  [DATALAB-2454]: fixed import for sonar.py

This branch includes the following new commits:

     new a36906b  [DATALAB-2454]: fixed import for sonar.py

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datalab.apache.org
For additional commands, e-mail: commits-help@datalab.apache.org


[incubator-datalab] 01/01: [DATALAB-2454]: fixed import for sonar.py

Posted by lf...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

lfrolov pushed a commit to branch DATALAB-1864
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git

commit a36906ba0bc6f9a979f641b43af7887c5eb0af3f
Author: leonidfrolov <fr...@gmail.com>
AuthorDate: Wed Aug 25 15:08:59 2021 +0300

    [DATALAB-2454]: fixed import for sonar.py
---
 infrastructure-provisioning/scripts/jenkins/sonar.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/infrastructure-provisioning/scripts/jenkins/sonar.py b/infrastructure-provisioning/scripts/jenkins/sonar.py
index f5846cd..e6185b9 100644
--- a/infrastructure-provisioning/scripts/jenkins/sonar.py
+++ b/infrastructure-provisioning/scripts/jenkins/sonar.py
@@ -19,11 +19,11 @@
 import requests
 import sys
 import time
-import urllib
+import urllib.parse
 
 time.sleep(30)  # wait for new code to be analyzed by SonarQube
 
-PROJECT_KEY = urllib.quote(sys.argv[1])
+PROJECT_KEY = urllib.parse.quote(sys.argv[1])
 TOKEN = sys.argv[2]
 
 

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datalab.apache.org
For additional commands, e-mail: commits-help@datalab.apache.org