Przeglądaj źródła

Remove duplicate names in IP entries list

Change-Id: I130d81ee954e001b7f79a25c5390c36bb37670d7
pull/122/head
Olivier Bourdon 7 lat temu
rodzic
commit
c8f6882f5d
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      _modules/linux_hosts.py

+ 1
- 1
_modules/linux_hosts.py Wyświetl plik

@@ -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)

Ładowanie…
Anuluj
Zapisz