You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After installing pass-import on OS X High Sierra 10.13.3 (17.4.0 Darwin Kernel Version 17.4.0) and running > pass import --help
I am getting:
Traceback (most recent call last):
File "/usr/local/lib/password-store/import/import.py", line 26, in <module>
from defusedxml import ElementTree
ModuleNotFoundError: No module named 'defusedxml'
This can be of course fixed by simply running
pip install defusedxml
But it would imho be preferable to not have these sorts of dependencies.
The text was updated successfully, but these errors were encountered:
Installation requirement (including defusexml) is already detailed in the readme file.
But it would imho be preferable to not have these sorts of dependencies.
I don't know what you mean by "these sorts of dependencies". python-defusedxml is a XML bomb protection for Python stdlib modules. Therefore it offers a better xml parser than the default one. It is a fully legit dependency.
After installing
pass-import
on OS X High Sierra 10.13.3 (17.4.0 Darwin Kernel Version 17.4.0) and running> pass import --help
I am getting:
This can be of course fixed by simply running
But it would imho be preferable to not have these sorts of dependencies.
The text was updated successfully, but these errors were encountered: