summaryrefslogtreecommitdiffstats
path: root/poky/scripts/lib/buildstats.py
diff options
context:
space:
mode:
Diffstat (limited to 'poky/scripts/lib/buildstats.py')
-rw-r--r--poky/scripts/lib/buildstats.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/poky/scripts/lib/buildstats.py b/poky/scripts/lib/buildstats.py
index d9aadf3cb..f7db3eaf9 100644
--- a/poky/scripts/lib/buildstats.py
+++ b/poky/scripts/lib/buildstats.py
@@ -263,7 +263,7 @@ class BuildStats(dict):
"""Aggregate other buildstats into this"""
if set(self.keys()) != set(buildstats.keys()):
raise ValueError("Refusing to aggregate buildstats, set of "
- "recipes is different")
+ "recipes is different: %s" % (set(self.keys()) ^ set(buildstats.keys())))
for pkg, data in buildstats.items():
self[pkg].aggregate(data)
OpenPOWER on IntegriCloud