summaryrefslogtreecommitdiffstats
path: root/meta/classes/buildhistory.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/buildhistory.bbclass')
-rw-r--r--meta/classes/buildhistory.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass
index 2e5213e66e..40b292b139 100644
--- a/meta/classes/buildhistory.bbclass
+++ b/meta/classes/buildhistory.bbclass
@@ -245,7 +245,7 @@ python buildhistory_emit_pkghistory() {
245 key = item[0] 245 key = item[0]
246 if key.endswith('_' + pkg): 246 if key.endswith('_' + pkg):
247 key = key[:-len(pkg)-1] 247 key = key[:-len(pkg)-1]
248 pkgdata[key] = item[1] 248 pkgdata[key] = item[1].encode('latin-1').decode('unicode_escape')
249 249
250 pkge = pkgdata.get('PKGE', '0') 250 pkge = pkgdata.get('PKGE', '0')
251 pkgv = pkgdata['PKGV'] 251 pkgv = pkgdata['PKGV']