summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaulo Eduardo Althoff <pealthoff@gmail.com>2019-01-21 00:32:31 -0200
committerJoan Touzet <wohali@users.noreply.github.com>2019-01-20 21:32:31 -0500
commitbfb98104ffd8035b23cabf3b597d68bd91f51b4f (patch)
tree2dddfaa5bf4124edeb9b335f8b5b30c81a1cec08
parent6cb050610abde7a822d340b2652cba36b4f2b287 (diff)
downloadcouchdb-bfb98104ffd8035b23cabf3b597d68bd91f51b4f.tar.gz
Fix python2 compatibility for couchup (#1868)
Closes #1053
-rwxr-xr-xrel/overlay/bin/couchup2
1 files changed, 1 insertions, 1 deletions
diff --git a/rel/overlay/bin/couchup b/rel/overlay/bin/couchup
index b5ac8066f..4f03759b2 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: