Merge pull request #10 from sigmavirus24/bug/9

Preserve 6 as an unreserved character
This commit is contained in:
Ian Cordasco
2015-03-20 09:43:15 -05:00

View File

@@ -32,7 +32,7 @@ important_characters = {
# We need to escape the '*' in this case
're_sub_delimiters': "!$&'()\*+,;=",
'unreserved_chars': ('ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
'012345789._~-'),
'0123456789._~-'),
# We need to escape the '-' in this case:
're_unreserved': 'A-Za-z0-9._~\-',
}