fixed small bug in messagereceiver
* wrong logging syntax
This commit is contained in:
parent
0067ce83f0
commit
adbba9bf9a
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ class Worker(threading.Thread):
|
|||
except OSError as e:
|
||||
if os.path.exists(self.__unix_socket_address):
|
||||
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
|
||||
|
||||
|
|
Loading…
Reference in a new issue