Fix urlparse for py3.

This commit is contained in:
Steve Pulec 2017-02-23 21:41:05 -05:00
commit 0dda687762
3 changed files with 2 additions and 7 deletions

View file

@ -1,7 +1,7 @@
from __future__ import unicode_literals
import datetime
import json
from urlparse import urlparse
from six.moves.urllib.parse import urlparse
from moto.core.responses import BaseResponse