Fix python3.x compatibility for stable 2.0 branch
Change-Id: I958d02873e4ba76be72230365dff8e500fa31b3c
Signed-off-by: George Keishing <gkeishin@in.ibm.com>
diff --git a/lib/gen_robot_utils.py b/lib/gen_robot_utils.py
index 281c27a..fd15eed 100644
--- a/lib/gen_robot_utils.py
+++ b/lib/gen_robot_utils.py
@@ -66,7 +66,7 @@
# If any variable values were changed due to the prior import, set them
# back to their original values.
- for key, value in post_var_dict.iteritems():
+ for key, value in post_var_dict.items():
if key in pre_var_dict:
if value != pre_var_dict[key]:
global_var_name = re.sub("[@&]", "$", key)