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

wohali pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb.git


The following commit(s) were added to refs/heads/master by this push:
     new bfb9810  Fix python2 compatibility for couchup (#1868)
bfb9810 is described below

commit bfb98104ffd8035b23cabf3b597d68bd91f51b4f
Author: Paulo Eduardo Althoff <pealth...@gmail.com>
AuthorDate: Mon Jan 21 00:32:31 2019 -0200

    Fix python2 compatibility for couchup (#1868)
    
    Closes #1053
---
 rel/overlay/bin/couchup | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rel/overlay/bin/couchup b/rel/overlay/bin/couchup
index b5ac806..4f03759 100755
--- a/rel/overlay/bin/couchup
+++ b/rel/overlay/bin/couchup
@@ -22,7 +22,7 @@ import sys
 try:
     from urllib.parse import quote
 except ImportError:
-    from urllib.parse import quote
+    from urllib import quote
 import requests
 
 try:

Reply via email to