Skip to content
This repository was archived by the owner on Aug 20, 2021. It is now read-only.

Commit

Permalink
minor bugfix on rare (error) log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
jquast committed Feb 15, 2015
1 parent 8125287 commit 96fb67e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x84/ssh.py
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ def __init__(self, config):
self.server_socket.bind((self.address, self.port))
self.server_socket.listen(self.LISTEN_BACKLOG)
except socket.error as err:
self.log.error('Unable to bind {self.address}:self.port, {err}'
self.log.error('Unable to bind {self.address}:{self.port}, {err}'
.format(self=self, err=err))
exit(1)
self.log.info('ssh listening on {self.address}:{self.port}/tcp'
Expand Down

0 comments on commit 96fb67e

Please sign in to comment.