Explorar el Código

Remove duplicate names in IP entries list

Change-Id: I130d81ee954e001b7f79a25c5390c36bb37670d7
pull/122/head
Olivier Bourdon hace 7 años
padre
commit
c8f6882f5d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      _modules/linux_hosts.py

+ 1
- 1
_modules/linux_hosts.py Ver fichero

@@ -24,4 +24,4 @@ def fqdn_sort_filter(iterable):
if iterable is None or isinstance(iterable, Undefined):
return iterable
# Do effective custom sorting of iterable here
return sorted(iterable, cmp=fqdn_sort_fn)
return sorted(set(iterable), cmp=fqdn_sort_fn)

Cargando…
Cancelar
Guardar