summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--ryu/lib/ofctl_nicira_ext.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ryu/lib/ofctl_nicira_ext.py b/ryu/lib/ofctl_nicira_ext.py
index 3a5c6be1..0cfa3a0f 100644
--- a/ryu/lib/ofctl_nicira_ext.py
+++ b/ryu/lib/ofctl_nicira_ext.py
@@ -72,7 +72,7 @@ def action_to_str(act, ofctl_action_to_str):
else:
src = spec.src
- start_end = ''
+ src_start_end = '[]'
if isinstance(spec.dst, (tuple, list)):
dst = spec.dst[0]
@@ -82,7 +82,7 @@ def action_to_str(act, ofctl_action_to_str):
else:
dst = spec.dst
- start_end = '[]'
+ dst_start_end = '[]'
add_spec('NX_LOAD {%s%s: %s%s}' % (dst, dst_start_end,
src, src_start_end))