mirror of
https://github.com/linux-system-roles/network.git
synced 2026-01-23 02:15:17 +00:00
library: fix handling black_list_uuid in connection_list()
This commit is contained in:
parent
37664fda92
commit
0d964dab26
1 changed files with 1 additions and 1 deletions
|
|
@ -1082,7 +1082,7 @@ class NMUtil:
|
|||
if black_list:
|
||||
cons = [c for c in cons if c not in black_list]
|
||||
if black_list_uuid:
|
||||
cons = [c for c in cons if c.get_uuid() not in black_list]
|
||||
cons = [c for c in cons if c.get_uuid() not in black_list_uuid]
|
||||
|
||||
cons = list(cons)
|
||||
def _cmp(a, b):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue