diff --git a/tcsfw/address.py b/tcsfw/address.py index f205d1f..8247e5c 100644 --- a/tcsfw/address.py +++ b/tcsfw/address.py @@ -180,6 +180,8 @@ def get_prioritized(cls, addresses: Iterable[AnyAddress], ip=True, hw=True, dns= """Get prioritized address""" add = None for a in addresses: + if a.is_tag(): + continue if not ip and isinstance(a, IPAddress): continue if not hw and isinstance(a, HWAddress):