fixed small bug in messagereceiver

* wrong logging syntax
This commit is contained in:
Bernhard B 2020-07-10 17:17:16 +02:00
parent 0067ce83f0
commit adbba9bf9a

View file

@ -32,7 +32,7 @@ class Worker(threading.Thread):
except OSError as e: except OSError as e:
if os.path.exists(self.__unix_socket_address): if os.path.exists(self.__unix_socket_address):
logging.exception( logging.exception(
"Couldn't bind to unix socket %s" % self.__unix_socket_address "Couldn't bind to unix socket %s", self.__unix_socket_address
) )
raise raise