Fix a part of python 3 tests (make tests-py3, see https://github.com/ansible/ansible/issues/13553 for more details).

pull/13567/head
Yannig Perré 9 years ago committed by Toshio Kuratomi
parent 5ab25e2dfe
commit 5011d63f7e

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

Loading…
Cancel
Save