summaryrefslogtreecommitdiff
path: root/oauth.py
diff options
context:
space:
mode:
Diffstat (limited to 'oauth.py')
-rw-r--r--oauth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/oauth.py b/oauth.py
index 1b9f9a5..dce9169 100644
--- a/oauth.py
+++ b/oauth.py
@@ -52,7 +52,7 @@ def build_authenticate_header(realm=''):
def escape(s):
"""Escape a URL including any /."""
- return urllib.quote(s, safe='~&')
+ return urllib.quote(s, safe='~')
def _utf8_str(s):
"""Convert unicode to utf-8."""