From 723b083cf5e51beec166059350466e5504db46c9 Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Tue, 18 Feb 2014 19:26:43 +0100 Subject: [PATCH] [FIX] pad: partial revert of global replace of urllib.urlencode() by werkzeug's version, this one was useful to handle sequences The API of werkzeug's version does not accept a boolean as the second argument, so this crashes. bzr revid: odo@openerp.com-20140218182643-a13mvcmsav195dfx --- addons/pad/py_etherpad/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/pad/py_etherpad/__init__.py b/addons/pad/py_etherpad/__init__.py index fce51d36890..0db607fe16f 100644 --- a/addons/pad/py_etherpad/__init__.py +++ b/addons/pad/py_etherpad/__init__.py @@ -1,7 +1,7 @@ """Module to talk to EtherpadLite API.""" import json -import werkzeug.urls +import urllib import urllib2 @@ -32,7 +32,7 @@ class EtherpadLiteClient: params = arguments or {} params.update({'apikey': self.apiKey}) - data = werkzeug.url_encode(params, True) + data = urllib.urlencode(params, True) try: opener = urllib2.build_opener()