Depend on lxml, and display a warning if it cannot be found.

This commit is contained in:
Suzanne Soy 2023-06-01 21:40:12 +01:00
parent a44e5143a3
commit a6668a6873
2 changed files with 7 additions and 1 deletions

View File

@ -46,7 +46,12 @@ def getParamGroups(nameInConfig, nameInPath):
return recur(True, nameInPath, nameInPath, root)
def getAllParams():
return [getParamGroups('UserParameter', 'User parameter')]
try:
from lxml import etree
return [getParamGroups('UserParameter', 'User parameter')]
except:
print('Could not load the list of all parameters. Please install the LXML python library with:\npython -m pip install --upgrade lxml')
return []
def paramGroupAction(nfo):
FreeCADGui.runCommand('Std_DlgParameter',0)

View File

@ -11,6 +11,7 @@
<url type="bugtracker">https://github.com/SuzanneSoy/SearchBar/issues</url>
<url type="documentation">https://github.com/SuzanneSoy/SearchBar</url>
<icon>Tango-System-search.svg</icon>
<depend type="python">lxml</depend>
<content>
<workbench>
<name>SearchBar</name>