summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/VBox/ValidationKit/testmanager/core/report.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/VBox/ValidationKit/testmanager/core/report.py b/src/VBox/ValidationKit/testmanager/core/report.py
index 98765a4b547..33dfdc984cb 100644
--- a/src/VBox/ValidationKit/testmanager/core/report.py
+++ b/src/VBox/ValidationKit/testmanager/core/report.py
@@ -465,7 +465,7 @@ class ReportPeriodSetBase(object):
def pruneRowsWithZeroSumHits(self):
""" Discards rows with zero sum hits across all periods. Works around lazy selects counting both totals and hits. """
cDeleted = 0;
- aidKeys = self.dcHitsPerId.keys();
+ aidKeys = list(self.dcHitsPerId);
for idKey in aidKeys:
if self.dcHitsPerId[idKey] == 0:
self.deleteKey(idKey);