It was regarded as the list because of the unnecessary comma.

Signed-off-by: WATANABE Fumitaka <[email protected]>
---
 ryu/app/rest_router.py |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ryu/app/rest_router.py b/ryu/app/rest_router.py
index 47840e9..ece4508 100644
--- a/ryu/app/rest_router.py
+++ b/ryu/app/rest_router.py
@@ -1628,12 +1628,12 @@ class OfCtl_v1_0(OfCtl):
             v = (32 - src_mask) << ofp.OFPFW_NW_SRC_SHIFT | \
                 ~ofp.OFPFW_NW_SRC_MASK
             wildcards &= v
-            nw_src = ipv4_text_to_int(nw_src),
+            nw_src = ipv4_text_to_int(nw_src)
         if nw_dst:
             v = (32 - dst_mask) << ofp.OFPFW_NW_DST_SHIFT | \
                 ~ofp.OFPFW_NW_DST_MASK
             wildcards &= v
-            nw_dst = ipv4_text_to_int(nw_dst),
+            nw_dst = ipv4_text_to_int(nw_dst)
         if nw_proto:
             wildcards &= ~ofp.OFPFW_NW_PROTO

-- 1.7.10.4


------------------------------------------------------------------------------
Android is increasing in popularity, but the open development platform that
developers love is also attractive to malware creators. Download this white
paper to learn more about secure code signing practices that can help keep
Android apps secure.
http://pubads.g.doubleclick.net/gampad/clk?id=65839951&iu=/4140/ostg.clktrk
_______________________________________________
Ryu-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ryu-devel

Reply via email to