summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--ryu/app/ofctl/api.py6
1 files 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,