mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 05:10:22 -07:00
consul_acl: fix broken import (#33729)
This commit is contained in:
parent
87c75b19dd
commit
85871da03d
2 changed files with 9 additions and 2 deletions
|
@ -175,8 +175,13 @@ try:
|
|||
except ImportError:
|
||||
pyhcl_installed = False
|
||||
|
||||
try:
|
||||
from requests.exceptions import ConnectionError
|
||||
has_requests = True
|
||||
except ImportError:
|
||||
has_requests = False
|
||||
|
||||
from collections import defaultdict
|
||||
from requests.exceptions import ConnectionError
|
||||
from ansible.module_utils.basic import to_text, AnsibleModule
|
||||
|
||||
|
||||
|
@ -607,6 +612,9 @@ def check_dependencies():
|
|||
raise ImportError("pyhcl required for this module. "
|
||||
"See: https://pypi.python.org/pypi/pyhcl")
|
||||
|
||||
if not has_requests:
|
||||
raise ImportError("requests required for this module. See https://pypi.python.org/pypi/requests")
|
||||
|
||||
|
||||
def main():
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue