From 31bf84b3638d631332adc8341dd45500031eebe3 Mon Sep 17 00:00:00 2001 From: Steve Pulec Date: Sat, 14 Feb 2015 08:43:17 -0500 Subject: [PATCH] Fix six import. Closes #299. --- moto/cloudformation/responses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moto/cloudformation/responses.py b/moto/cloudformation/responses.py index 1aa4c9117..18c1d23f3 100644 --- a/moto/cloudformation/responses.py +++ b/moto/cloudformation/responses.py @@ -1,7 +1,7 @@ from __future__ import unicode_literals import json -from six.moves.urllib_parse import urlparse +from six.moves.urllib.parse import urlparse from moto.core.responses import BaseResponse from moto.s3 import s3_backend