diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2014-05-26 19:52:18 +0300 |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2014-05-26 19:52:18 +0300 |
commit | fd19da346b7bcbc6310a4f53d3d224797a319e9c (patch) | |
tree | 8a1e7bf7e0357fe16955c86220b33eb6705226a2 /mediagoblin/plugins/oauth/forms.py | |
parent | 386c9c7c55147b27c258edd5deee36594553493d (diff) | |
download | mediagoblin-fd19da346b7bcbc6310a4f53d3d224797a319e9c.tar.lz mediagoblin-fd19da346b7bcbc6310a4f53d3d224797a319e9c.tar.xz mediagoblin-fd19da346b7bcbc6310a4f53d3d224797a319e9c.zip |
Use six.moves.urllib.parse instead of the urlparse module.
Diffstat (limited to 'mediagoblin/plugins/oauth/forms.py')
-rw-r--r-- | mediagoblin/plugins/oauth/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/plugins/oauth/forms.py b/mediagoblin/plugins/oauth/forms.py index 5edd992a..d271359a 100644 --- a/mediagoblin/plugins/oauth/forms.py +++ b/mediagoblin/plugins/oauth/forms.py @@ -16,7 +16,7 @@ import wtforms -from urlparse import urlparse +from six.moves.urllib.parse import urlparse from mediagoblin.tools.extlib.wtf_html5 import URLField from mediagoblin.tools.translate import lazy_pass_to_ugettext as _ |