[oe-commits] [bitbake] branch master updated: siggen: Fix file variable typo in compare_sigfiles

git at git.openembedded.org git at git.openembedded.org
Sat Aug 20 15:12:07 UTC 2016


rpurdie pushed a commit to branch master
in repository bitbake.

The following commit(s) were added to refs/heads/master by this push:
       new  deab9a3   siggen: Fix file variable typo in compare_sigfiles
deab9a3 is described below

commit deab9a30987b225922490ca186c5307c15d45b82
Author: Jonathan Liu <net147 at gmail.com>
AuthorDate: Sat Aug 20 18:58:13 2016 +1000

    siggen: Fix file variable typo in compare_sigfiles
    
    Signed-off-by: Jonathan Liu <net147 at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 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)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list