Fully qualify function names in tool info listing.
This commit is contained in:
parent
bbf062d561
commit
1e66589f11
1 changed files with 1 additions and 1 deletions
|
|
@ -1191,7 +1191,7 @@ def print_tool_info():
|
||||||
if hasattr(tool, "command"):
|
if hasattr(tool, "command"):
|
||||||
print(f"command: {tool.command} foo.{extensions[0]}")
|
print(f"command: {tool.command} foo.{extensions[0]}")
|
||||||
else:
|
else:
|
||||||
print("function:", "tools." + tool.__name__)
|
print("function:", "eris.tools." + tool.__name__)
|
||||||
available = ("yes" if tools.is_tool_available(tool) else
|
available = ("yes" if tools.is_tool_available(tool) else
|
||||||
termstr.TermStr("no").fg_color(termstr.Color.red))
|
termstr.TermStr("no").fg_color(termstr.Color.red))
|
||||||
print("available:", available)
|
print("available:", available)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue