From 92483852a6954a7e5c08aad661d99e23bf473530 Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Wed, 16 Jul 2014 14:03:09 +0200 Subject: Code style fixup --- miniircd | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/miniircd b/miniircd index 7ca688b..c08fee8 100755 --- a/miniircd +++ b/miniircd @@ -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", -- cgit v1.2.3