Preserve 6 as an unreserved character

Closes #9
This commit is contained in:
Ian Cordasco
2015-03-20 09:23:36 -05:00
parent 3677612bc5
commit 90a84192c1

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._~\-',
}