* [PATCH] siggen: Fix file variable typo in compare_sigfiles
@ 2016-08-20 8:58 Jonathan Liu
2016-08-20 15:12 ` Richard Purdie
0 siblings, 1 reply; 2+ messages in thread
From: Jonathan Liu @ 2016-08-20 8:58 UTC (permalink / raw)
To: bitbake-devel
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
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] siggen: Fix file variable typo in compare_sigfiles
2016-08-20 8:58 [PATCH] siggen: Fix file variable typo in compare_sigfiles Jonathan Liu
@ 2016-08-20 15:12 ` Richard Purdie
0 siblings, 0 replies; 2+ messages in thread
From: Richard Purdie @ 2016-08-20 15:12 UTC (permalink / raw)
To: Jonathan Liu, bitbake-devel
On Sat, 2016-08-20 at 18:58 +1000, Jonathan Liu wrote:
> Signed-off-by: Jonathan Liu <net147@gmail.com>
Thanks, I hadn't meant to merge Paul's patch until this was fixed but
somehow it slipped the net. I've merged this too.
Cheers,
Richard
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-08-20 15:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-20 8:58 [PATCH] siggen: Fix file variable typo in compare_sigfiles Jonathan Liu
2016-08-20 15:12 ` Richard Purdie
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.