~matt-goodall/oauthlib/fix-dict-encode-bug

« back to all changes in this revision

Viewing changes to oauthlib/oauth1/rfc5849/signature.py

  • Committer: Ib Lundgren
  • Date: 2013-02-07 22:27:46 UTC
  • Revision ID: git-v1:7dc262a95b57f429cd6179e8d5250b8462979e67
Fix #83

Show diffs side-by-side

added added

removed removed

Lines of Context:
155
155
        if (scheme, port) in default_ports:
156
156
            netloc = host
157
157
 
158
 
    return urlparse.urlunparse((scheme, netloc, path, '', '', ''))
 
158
    return urlparse.urlunparse((scheme, netloc, path, params, '', ''))
159
159
 
160
160
 
161
161
# ** Request Parameters **