summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--ryu/lib/ofctl_nicira_ext.py15
1 files changed, 10 insertions, 5 deletions
diff --git a/ryu/lib/ofctl_nicira_ext.py b/ryu/lib/ofctl_nicira_ext.py
index 0cfa3a0f..98f5167a 100644
--- a/ryu/lib/ofctl_nicira_ext.py
+++ b/ryu/lib/ofctl_nicira_ext.py
@@ -108,11 +108,16 @@ def action_to_str(act, ofctl_action_to_str):
'table_id: %s, '
'fin_idle_timeout: %s, '
'fin_hard_timeout: %s, '
- 'specs: %s}' % (act.idle_timeout, act.hard_timeout,
- act.priority, act.cookie, act.flags,
- act.fin_idle_timeout,
- act.self.fin_hard_timeout,
- specs))
+ 'specs: %s}' %
+ (act.idle_timeout,
+ act.hard_timeout,
+ act.priority,
+ act.cookie,
+ act.flags,
+ act.table_id,
+ act.fin_idle_timeout,
+ act.self.fin_hard_timeout,
+ specs))
elif sub_type == nicira_ext.NXAST_CONJUNCTION:
return ('NX_CONJUNCTION: {clause: %s, number_of_clauses: %s, id: %s}' %