We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab76195 commit 5b3c8caCopy full SHA for 5b3c8ca
oauth2/__init__.py
@@ -325,7 +325,7 @@ def to_postdata(self):
325
# tell urlencode to deal with sequence values and map them correctly
326
# to resulting querystring. for example self["k"] = ["v1", "v2"] will
327
# result in 'k=v1&k=v2' and not k=%5B%27v1%27%2C+%27v2%27%5D
328
- return urllib.urlencode(self, True)
+ return urllib.urlencode(self, True).replace('+', '%20')
329
330
def to_url(self):
331
"""Serialize as a URL for a GET request."""
0 commit comments