From af52103ec8ffc874221b666bf07a15bb0a16602b Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Fri, 24 Sep 2021 22:10:58 +0200 Subject: [PATCH] fix an information --- aman/com/Euroscope.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aman/com/Euroscope.py b/aman/com/Euroscope.py index ac2b79b..e62aa10 100644 --- a/aman/com/Euroscope.py +++ b/aman/com/Euroscope.py @@ -87,7 +87,7 @@ class Euroscope: self.receiverSocket.setsockopt(zmq.SUBSCRIBE, b'') self.receiverThread = ReceiverThread(self.receiverSocket, aman) self.receiverThread.start() - print('Listening at tcp://' + config.Address + ':' + str(config.PortReceiver)) + print('Listening to tcp://' + config.Address + ':' + str(config.PortReceiver)) # initialize the notification self.notificationSocket = zmq.Socket(self.context, zmq.PUB) @@ -95,7 +95,7 @@ class Euroscope: self.notificationSocket.setsockopt(zmq.CURVE_SECRETKEY, keyPair[1]) self.notificationSocket.setsockopt(zmq.CURVE_SERVER, True) self.notificationSocket.bind('tcp://' + config.Address + ':' + str(config.PortNotification)) - print('Publishing at tcp://' + config.Address + ':' + str(config.PortNotification)) + print('Publishing to tcp://' + config.Address + ':' + str(config.PortNotification)) def __del__(self): self.receiverThread.stopThread()