Move to python3
This commit moves configure.ac and python scripts to
python3
Signed-off-by: Santosh Puranik <santosh.puranik@in.ibm.com>
Change-Id: Iaa03dffe15903fbd68c354442823903cc3bb3ad2
diff --git a/extra-properties.mako.hpp b/extra-properties.mako.hpp
index 6b006c2..a297b2c 100644
--- a/extra-properties.mako.hpp
+++ b/extra-properties.mako.hpp
@@ -18,14 +18,14 @@
{
const std::map<Path, InterfaceMap> objects = {
-% for path in dict.iterkeys():
+% for path in dict.keys():
<%
interfaces = dict[path]
%>\
{"${path}",{
- % for interface,properties in interfaces.iteritems():
+ % for interface,properties in interfaces.items():
{"${interface}",{
- % for property,value in properties.iteritems():
+ % for property,value in properties.items():
{"${property}", ${value}},
% endfor
}},