1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #13554 from Yannig/devel_fix_python3_tests

Use six lib to import urlparse properly.
This commit is contained in:
Toshio Kuratomi 2015-12-15 07:55:56 -08:00
commit d203438a2c

View file

@ -28,7 +28,11 @@
import os
import hmac
import urlparse
try:
import urlparse
except ImportError:
import urllib.parse as urlparse
try:
from hashlib import sha1