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

pull/13554/head
Yannig Perré 10 years ago
parent 5d1a2eac3e
commit be4d1f9ee3

@ -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

Loading…
Cancel
Save