projects
/
tweepy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
02a43b7
)
Add forward slash support in tweepy.utils.urlencode_noplus
author
Aaron Hill
<aa1ronham@gmail.com>
Wed, 12 Jun 2013 01:20:06 +0000
(21:20 -0400)
committer
Aaron Hill
<aa1ronham@gmail.com>
Wed, 12 Jun 2013 01:20:06 +0000
(21:20 -0400)
tweepy/utils.py
patch
|
blob
|
blame
|
history
diff --git
a/tweepy/utils.py
b/tweepy/utils.py
index 52c6c79b94a2143bb7289b804731851617d8a743..46e5ac13169c084e201a520c59612762bb5ce2e4 100644
(file)
--- 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()])
-