From 590c2135858bb5d0cfc375c0d82ca610550ccd4a Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 4 Apr 2014 16:16:39 +0100 Subject: Revert "buildhistory_analysis: fix error when comparing image contents" This reverts commit 5b616aa7b618f6ed221d6fa9738220a2c2349f7d. --- meta/lib/oe/buildhistory_analysis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/lib/oe/buildhistory_analysis.py b/meta/lib/oe/buildhistory_analysis.py index ffe12d0023..86b5a12347 100644 --- a/meta/lib/oe/buildhistory_analysis.py +++ b/meta/lib/oe/buildhistory_analysis.py @@ -400,7 +400,7 @@ def process_changes(repopath, revision1, revision2 = 'HEAD', report_all = False) chg = ChangeRecord(path, filename, d.a_blob.data_stream.read(), d.b_blob.data_stream.read(), True) changes.append(chg) elif filename == 'image-info.txt': - changes.extend(compare_dict_blobs(path, d.a_blob, d.b_blob, report_all, report_ver)) + changes.extend(compare_dict_blobs(path, d.a_blob, d.b_blob, report_all)) elif '/image-files/' in path: chg = ChangeRecord(path, filename, d.a_blob.data_stream.read(), d.b_blob.data_stream.read(), True) changes.append(chg) -- cgit 1.2.3-korg