Skip to content

Commit

Permalink
Removing an errant comma (oops). NOTE: 2 tests are currently broken: …
Browse files Browse the repository at this point in the history
…tests.oauth1.rfc5849.test_server.ServerTests.test_server_callback_request & tests.oauth1.rfc5849.test_server.ServerTests.test_basic_server_request
  • Loading branch information
dgouldin committed Apr 24, 2012
1 parent d17fa0e commit 4f3c81a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions oauthlib/oauth1/rfc5849/signature.py
Expand Up @@ -22,7 +22,6 @@
.. _`section 3.4`: http://tools.ietf.org/html/rfc5849#section-3.4
"""

import binascii
import hashlib
import hmac
Expand Down Expand Up @@ -81,7 +80,7 @@ def construct_base_string(http_method, base_string_uri,
#
# .. _`Section 3.4.1.2`: http://tools.ietf.org/html/rfc5849#section-3.4.1.2
# .. _`Section 3.4.6`: http://tools.ietf.org/html/rfc5849#section-3.4.6
base_string += utils.escape(base_string_uri),
base_string += utils.escape(base_string_uri)

# 4. An "&" character (ASCII code 38).
base_string += u'&'
Expand Down

0 comments on commit 4f3c81a

Please sign in to comment.