diff -r 362039519454 -r 7dd551ac2fa0 runtime/ServicePublisher.py --- a/runtime/ServicePublisher.py Thu Mar 07 21:57:18 2019 +0100 +++ b/runtime/ServicePublisher.py Mon Mar 11 01:03:32 2019 +0100 @@ -31,6 +31,7 @@ service_type = '_Beremiz._tcp.local.' + class ServicePublisher(object): def __init__(self, protocol): # type: fully qualified service type name @@ -61,13 +62,13 @@ if ip == "0.0.0.0": print("MDNS brodcasted on all interfaces") - interfaces=zeroconf.InterfaceChoice.All + interfaces = zeroconf.InterfaceChoice.All ip = self.gethostaddr() else: - interfaces=[ip] + interfaces = [ip] self.server = zeroconf.Zeroconf(interfaces=interfaces) - + print("MDNS brodcasted service address :" + ip) self.ip_32b = socket.inet_aton(ip)