From 3542f4ec3074658c4cbf9044dfdbb3b13f8a53b0 Mon Sep 17 00:00:00 2001 From: Steve Pulec Date: Tue, 26 Feb 2013 15:12:38 -0500 Subject: [PATCH] make s3 handle http --- moto/s3/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moto/s3/urls.py b/moto/s3/urls.py index 4a1632bd..f43e3798 100644 --- a/moto/s3/urls.py +++ b/moto/s3/urls.py @@ -1,6 +1,6 @@ from .responses import all_buckets, bucket_response, key_response -base_url = "https://(.*).s3.amazonaws.com" +base_url = "https?://(.*).s3.amazonaws.com" urls = { 'https://s3.amazonaws.com/$': all_buckets,