You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
521 B
14 lines
521 B
diff --git a/ovsdb/ovsdb-idlc.in b/ovsdb/ovsdb-idlc.in
|
|
index 40fef39ed..22d0a4e22 100755
|
|
--- a/ovsdb/ovsdb-idlc.in
|
|
+++ b/ovsdb/ovsdb-idlc.in
|
|
@@ -176,7 +176,7 @@ def replace_cplusplus_keyword(schema):
|
|
'wchar_t', 'while', 'xor', 'xor_eq'}
|
|
|
|
for tableName, table in schema.tables.items():
|
|
- for columnName in table.columns:
|
|
+ for columnName in list(table.columns):
|
|
if columnName in keywords:
|
|
table.columns[columnName + '_'] = table.columns.pop(columnName)
|
|
|