From 0841f3f253a4a6479dabfcd2bbd29e92d2fa7896 Mon Sep 17 00:00:00 2001 From: IWASE Yusuke Date: Thu, 1 Mar 2018 14:22:32 +0900 Subject: [PATCH] doc: Fix unexpected indent in ofctl.api doc Signed-off-by: IWASE Yusuke Signed-off-by: FUJITA Tomonori --- ryu/app/ofctl/api.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ryu/app/ofctl/api.py b/ryu/app/ofctl/api.py index fe76b807..1149e06d 100644 --- a/ryu/app/ofctl/api.py +++ b/ryu/app/ofctl/api.py @@ -78,11 +78,11 @@ def send_msg(app, msg, reply_cls=None, reply_multi=False): def _my_handler(self, ev): # ...(snip)... - msg = parser.OFPPortDescStatsRequest(datapath=datapath) + msg = parser.OFPPortDescStatsRequest(datapath=datapath) result = ofctl_api.send_msg( self, msg, - reply_cls=parser.OFPPortDescStatsReply, - reply_multi=True) + reply_cls=parser.OFPPortDescStatsReply, + reply_multi=True) """ return app.send_request(event.SendMsgRequest(msg=msg, reply_cls=reply_cls,