From 4d9a1753234e620c173d2214e5b3a7afcee3dcac Mon Sep 17 00:00:00 2001 From: Paulo Eduardo Althoff Date: Sun, 20 Jan 2019 22:40:13 -0200 Subject: [PATCH] Update couchup In python2 the urllib was not splitted yet like in python 3 so the correct is import quote directly from urlib if using python2 --- 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 b5ac8066f69..4f03759b243 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: