Merge pull request #1 from tbuschmann/patch-1

change urllib to six.moves for python2/3 support
pull/4/head
kewl 2018-03-25 07:53:17 +01:00 committed by GitHub
commit 1cccf3a6fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

3
aur.py
View File

@ -2,7 +2,8 @@
from ansible.module_utils.basic import *
import json
import urllib.request
from ansible.module_utils import six
from six.moves import urllib
import tarfile
import os
import os.path