Minor changes

This commit is contained in:
Loic Guegan 2023-10-27 09:15:16 +02:00
parent cad597868f
commit 37ac5a14dd

View file

@ -26,9 +26,10 @@ def info():
print(", ", end="")
pattern = re.compile(CONF["cluster"]["groups"][group])
count=0
for ip in nodes:
if pattern.match(ip):
count=count+1
if not nodes == None:
for ip in nodes:
if pattern.match(ip):
count=count+1
print("{}({})".format(group,count),end="")
print()
else: