From 32b99f0719b31d8416d7236bdd24104c6d0b1d4d Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Sat, 8 Mar 2014 20:21:04 -1000 Subject: [PATCH] urlencode moved in py3 --- tests/integration/test_httplib2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_httplib2.py b/tests/integration/test_httplib2.py index ac43eaa..fff7e7e 100644 --- a/tests/integration/test_httplib2.py +++ b/tests/integration/test_httplib2.py @@ -2,7 +2,7 @@ # coding=utf-8 # External imports -from urllib import urlencode +from six.moves.urllib_parse import urlencode import pytest # Internal imports