bug fix host alias list

This commit is contained in:
Gilles Grandou 2020-01-03 15:53:16 +01:00
parent 055f4949cd
commit 8c4f998018
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ def load_conf():
hosts_list = [ host.lower() for host in conf['Hosts'] ]
hosts_ipv4_nat_list = [ host.lower() for host in conf['NatHosts'] ]
hosts_alias_list = [ h.lower() for h in conf['Aliases'] ]
hosts_alias_list = conf['Aliases']
def ping(hostname):