summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2017-02-06 14:17:35 -0800
committerMatt Clay <matt@mystile.com>2017-02-06 14:17:35 -0800
commitd403c1cdcc8dffb46241df42a5bf2b7c8d50fc95 (patch)
treeb47e6d5669f4625d6614969ba3925efa8715a752
parentc35850fd8e46b8702b0533ca0aceabfe69166ac2 (diff)
downloadansible-modules-core-d403c1cdcc8dffb46241df42a5bf2b7c8d50fc95.tar.gz
Revert "fix urlparse usage in cloud.amazon module to be compatible with python3"
This reverts commit fbf0346597f6c7505befd1875cec40c978f8ffc1.
-rw-r--r--cloud/amazon/_ec2_ami_search.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cloud/amazon/_ec2_ami_search.py b/cloud/amazon/_ec2_ami_search.py
index 0a9bed14..4e3189f5 100644
--- a/cloud/amazon/_ec2_ami_search.py
+++ b/cloud/amazon/_ec2_ami_search.py
@@ -82,7 +82,7 @@ EXAMPLES = '''
import csv
import json
-import ansible.module_utils.six.moves.urllib.parse as urlparse
+import urlparse
SUPPORTED_DISTROS = ['ubuntu']