Skip to content

Commit 2a6f0e9

Browse files
author
leah.culver
committed
fix for #43, don't encode callback right away. Thanks dinkumator and Hiroaki.Kawai!
git-svn-id: https://oauth.googlecode.com/svn/code/python@848 f7ae4463-c52f-0410-a7dc-93bad6e629e8
1 parent 62f83bf commit 2a6f0e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

oauth/oauth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def from_token_and_callback(token, callback=None, http_method=HTTP_METHOD, http_
232232
parameters['oauth_token'] = token.key
233233

234234
if callback:
235-
parameters['oauth_callback'] = escape(callback)
235+
parameters['oauth_callback'] = callback
236236

237237
return OAuthRequest(http_method, http_url, parameters)
238238

0 commit comments

Comments
 (0)