Special characters now allowed in s3bucket_path keys. Fixes issue #78.

This commit is contained in:
Eric Lang 2014-01-07 12:59:10 -08:00
commit fcb2542410
2 changed files with 3 additions and 3 deletions

View file

@ -16,5 +16,5 @@ url_paths = {
'{0}/$': bucket_response3,
'{0}/(?P<bucket_name>[a-zA-Z0-9\-_.]+)$': ro.bucket_response,
'{0}/(?P<bucket_name>[a-zA-Z0-9\-_.]+)/$': bucket_response2,
'{0}/(?P<bucket_name>[a-zA-Z0-9\-_./]+)/(?P<key_name>[a-zA-Z0-9\-_.?]+)': ro.key_response
'{0}/(?P<bucket_name>[a-zA-Z0-9\-_./]+)/(?P<key_name>.+)': ro.key_response
}