Minor changes

This commit is contained in:
Loic Guegan 2023-10-26 17:31:05 +02:00
parent f741c9863d
commit 2250082bb3

View file

@ -23,3 +23,10 @@ def info():
print("Last node scan: ",end="")
if cache!=None and "last_scan" in CONF["cache"]:
print(CONF["cache"]["last_scan"])
else:
print("NA")
# Plugins
print("Plugins list:")
for name in CONF["plugins"]:
print(" "+name+":\t"+CONF["plugins"][name])