mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
pip: produce better error msg on import error (#47743)
* pip: produce better error msg on import error * Added porting guide entry for 2.7
This commit is contained in:
committed by
Martin Krizek
parent
f536944e3a
commit
73141d5035
@@ -241,16 +241,19 @@ import sys
|
||||
import tempfile
|
||||
import operator
|
||||
import shlex
|
||||
import traceback
|
||||
from distutils.version import LooseVersion
|
||||
|
||||
SETUPTOOLS_IMP_ERR = None
|
||||
try:
|
||||
from pkg_resources import Requirement
|
||||
|
||||
HAS_SETUPTOOLS = True
|
||||
except ImportError:
|
||||
HAS_SETUPTOOLS = False
|
||||
SETUPTOOLS_IMP_ERR = traceback.format_exc()
|
||||
|
||||
from ansible.module_utils.basic import AnsibleModule, is_executable
|
||||
from ansible.module_utils.basic import AnsibleModule, is_executable, missing_required_lib
|
||||
from ansible.module_utils._text import to_native
|
||||
from ansible.module_utils.six import PY3
|
||||
|
||||
@@ -573,7 +576,8 @@ def main():
|
||||
)
|
||||
|
||||
if not HAS_SETUPTOOLS:
|
||||
module.fail_json(msg="No setuptools found in remote host, please install it first.")
|
||||
module.fail_json(msg=missing_required_lib("setuptools"),
|
||||
exception=SETUPTOOLS_IMP_ERR)
|
||||
|
||||
state = module.params['state']
|
||||
name = module.params['name']
|
||||
|
||||
Reference in New Issue
Block a user