Fix deprecated for loop in Delete Error Logs
Signed-off-by: David Shaw <dlshaw@us.ibm.com>
Change-Id: I5ce810ced422b90acb015768d57df31287ea7050
diff --git a/lib/utils.robot b/lib/utils.robot
index 26e200a..e4d812c 100755
--- a/lib/utils.robot
+++ b/lib/utils.robot
@@ -539,8 +539,9 @@
# Get the list of error logs entries and delete them all.
${elog_entries}= Get URL List ${BMC_LOGGING_ENTRY}
- :FOR ${entry} IN @{elog_entries}
- \ Delete Error Log Entry ${entry}
+ FOR ${entry} IN @{elog_entries}
+ Delete Error Log Entry ${entry}
+ END
Delete All Error Logs