]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[1924] style fixes: avoided long lines
authorJINMEI Tatuya <jinmei@isc.org>
Fri, 8 Feb 2013 06:57:43 +0000 (22:57 -0800)
committerJINMEI Tatuya <jinmei@isc.org>
Fri, 8 Feb 2013 06:57:43 +0000 (22:57 -0800)
src/bin/msgq/msgq.py.in

index 19bcec548ae717221b5cb36aadc7b52d387f4bc3..a555631522032016646c8e292476d07fa8c16f65 100755 (executable)
@@ -588,11 +588,12 @@ class MsgQ:
             # one should be enough, we modify the dict only.
             header = routing.copy()
             header[CC_HEADER_REPLY] = routing[CC_HEADER_SEQ]
-            header[CC_HEADER_FROM] = "msgq" # Dummy lname not assigned to clients
+            # Dummy lname not assigned to clients
+            header[CC_HEADER_FROM] = "msgq"
             header[CC_HEADER_TO] = routing[CC_HEADER_FROM]
             # We keep the seq as it is. We don't need to track the message
-            # and we will not confuse the sender. The sender would use an unique
-            # id for each message, so we won't return one twice to it.
+            # and we will not confuse the sender. The sender would use an
+            # unique id for each message, so we won't return one twice to it.
             errmsg = self.preparemsg(header, payload)
             # Send it back.
             self.send_prepared_msg(sock, errmsg)