Only show the traceback for importing cryptography when in Ansible Debug. (#16795)
This commit is contained in:
parent
3e964dbfae
commit
53c348c89d
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ except ImportError:
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
display.warning("Optional dependency 'cryptography' raised an exception, falling back to 'Crypto'")
|
display.warning("Optional dependency 'cryptography' raised an exception, falling back to 'Crypto'")
|
||||||
import traceback
|
import traceback
|
||||||
traceback.print_exc()
|
display.debug("Traceback from import of cryptography was {0}".format(traceback.format_exc()))
|
||||||
|
|
||||||
from ansible.compat.six import PY3
|
from ansible.compat.six import PY3
|
||||||
from ansible.utils.unicode import to_unicode, to_bytes
|
from ansible.utils.unicode import to_unicode, to_bytes
|
||||||
|
|
Loading…
Reference in a new issue