diff options
author | Joel Rosdahl <joel@rosdahl.net> | 2014-07-16 14:03:09 +0200 |
---|---|---|
committer | Joel Rosdahl <joel@rosdahl.net> | 2014-07-16 14:03:09 +0200 |
commit | 92483852a6954a7e5c08aad661d99e23bf473530 (patch) | |
tree | f41f3658113ea219804a27f1e5ced00f850bc619 | |
parent | 1c9921b3f85bc82c1af7c75e533445f6dcb4d7e5 (diff) | |
download | miniircd-92483852a6954a7e5c08aad661d99e23bf473530.tar.gz miniircd-92483852a6954a7e5c08aad661d99e23bf473530.zip |
Code style fixup
-rwxr-xr-x | miniircd | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -646,7 +646,8 @@ class Server(object): self.address = socket.gethostbyname(options.listen) else: self.address = "" - self.name = socket.getfqdn(self.address)[:63] # Server name limit from the RFC. + self.name = socket.getfqdn(self.address)[:63] # Server name limit from + # the RFC. self.channels = {} # irc_lower(Channel name) --> Channel instance. self.clients = {} # Socket --> Client instance. @@ -823,8 +824,8 @@ def main(argv): help="print debug messages to stdout") op.add_option( "--listen", - metavar = "X", - help = "listen on specific IP address") + metavar="X", + help="listen on specific IP address X") op.add_option( "--logdir", metavar="X", |