mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
commit
c14f072a3b
2 changed files with 3 additions and 2 deletions
|
@ -24,7 +24,8 @@ import os
|
||||||
import re
|
import re
|
||||||
import shlex
|
import shlex
|
||||||
import traceback
|
import traceback
|
||||||
import urlparse
|
|
||||||
|
from six.moves.urllib import parse as urlparse
|
||||||
from ansible import errors
|
from ansible import errors
|
||||||
from ansible import utils
|
from ansible import utils
|
||||||
from ansible.callbacks import vvv, vvvv, verbose
|
from ansible.callbacks import vvv, vvvv, verbose
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
from __future__ import (absolute_import, division, print_function)
|
from __future__ import (absolute_import, division, print_function)
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
import Queue
|
from six.moves import queue as Queue
|
||||||
import time
|
import time
|
||||||
|
|
||||||
from ansible.errors import *
|
from ansible.errors import *
|
||||||
|
|
Loading…
Reference in a new issue