Signed-off-by: Satoshi Fujimoto <[email protected]>
---
ryu/services/protocols/ovsdb/client.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ryu/services/protocols/ovsdb/client.py
b/ryu/services/protocols/ovsdb/client.py
index 68d6866..7e7d271 100644
--- a/ryu/services/protocols/ovsdb/client.py
+++ b/ryu/services/protocols/ovsdb/client.py
@@ -155,12 +155,12 @@ def _filter_schema(schema, schema_tables,
exclude_table_columns):
"""
tables = {}
- for tbl_name, tbl_data in schema['tables'].iteritems():
+ for tbl_name, tbl_data in schema['tables'].items():
if not schema_tables or tbl_name in schema_tables:
columns = {}
exclude_columns = exclude_table_columns.get(tbl_name, [])
- for col_name, col_data in tbl_data['columns'].iteritems():
+ for col_name, col_data in tbl_data['columns'].items():
if col_name in exclude_columns:
continue
--
2.7.4
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Ryu-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ryu-devel