From: Jonathan Liu <net147@gmail.com>
To: bitbake-devel@lists.openembedded.org
Subject: [PATCH] siggen: Fix file variable typo in compare_sigfiles
Date: Sat, 20 Aug 2016 18:58:13 +1000 [thread overview]
Message-ID: <20160820085813.15502-1-net147@gmail.com> (raw)
Signed-off-by: Jonathan Liu <net147@gmail.com>
---
lib/bb/siggen.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/bb/siggen.py b/lib/bb/siggen.py
index 0862cff..3a7dac4 100644
--- a/lib/bb/siggen.py
+++ b/lib/bb/siggen.py
@@ -367,7 +367,7 @@ def compare_sigfiles(a, b, recursecb = None):
output = []
with open(a, 'rb') as f:
- p1 = pickle.Unpickler(ff)
+ p1 = pickle.Unpickler(f)
a_data = p1.load()
with open(b, 'rb') as f:
p2 = pickle.Unpickler(f)
--
2.9.3
next reply other threads:[~2016-08-20 8:58 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-20 8:58 Jonathan Liu [this message]
2016-08-20 15:12 ` [PATCH] siggen: Fix file variable typo in compare_sigfiles Richard Purdie
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160820085813.15502-1-net147@gmail.com \
--to=net147@gmail.com \
--cc=bitbake-devel@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.