From 3d8790b30b3419b2062dd2380772f87a368113ae Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Tue, 11 Jun 2013 21:20:06 -0400 Subject: [PATCH] Add forward slash support in tweepy.utils.urlencode_noplus --- tweepy/utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tweepy/utils.py b/tweepy/utils.py index 52c6c79..46e5ac1 100644 --- a/tweepy/utils.py +++ b/tweepy/utils.py @@ -98,6 +98,5 @@ def list_to_csv(item_list): return ','.join([str(i) for i in item_list]) def urlencode_noplus(query): - return '&'.join(['%s=%s' % (quote(str(k)), quote(str(v))) \ + return '&'.join(['%s=%s' % (quote(str(k), ''), quote(str(v), '')) \ for k, v in query.iteritems()]) - -- 2.25.1