Skip to content

Commit

Permalink
pep8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcountryman committed Nov 5, 2015
1 parent 737ab82 commit c650a60
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rauth/oauth.py
Expand Up @@ -98,7 +98,9 @@ def _normalize_request_parameters(self, oauth_params, req_kwargs):
all_normalized.sort()

# finally encode the params as a string
return urlencode(all_normalized, True).replace('+', '%20').replace('%7E', '~')
return urlencode(all_normalized, True)\
.replace('+', '%20')\
.replace('%7E', '~')


class HmacSha1Signature(SignatureMethod):
Expand Down

0 comments on commit c650a60

Please sign in to comment.