From: JINMEI Tatuya Date: Fri, 8 Feb 2013 06:57:43 +0000 (-0800) Subject: [1924] style fixes: avoided long lines X-Git-Tag: bind10-1.1.0beta1-release~104^2~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2832cc07032db112749999848d8506febdb44e78;p=thirdparty%2Fkea.git [1924] style fixes: avoided long lines --- diff --git a/src/bin/msgq/msgq.py.in b/src/bin/msgq/msgq.py.in index 19bcec548a..a555631522 100755 --- a/src/bin/msgq/msgq.py.in +++ b/src/bin/msgq/msgq.py.in @@ -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)