From: Richard Purdie Date: Mon, 1 Nov 2010 10:23:09 +0000 (+0000) Subject: bitbake/siggen: Fix finalise call arguments X-Git-Tag: 2011-1~4156 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=dc13a6197f4bcf34ee8db6ba5484ac768b9b206b;p=openembedded-core.git bitbake/siggen: Fix finalise call arguments Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py index 066710c3bb..06a48f1765 100644 --- a/bitbake/lib/bb/siggen.py +++ b/bitbake/lib/bb/siggen.py @@ -29,7 +29,7 @@ class SignatureGenerator(object): def __init__(self, data, dumpsigs): return - def finalise(self, fn, d): + def finalise(self, fn, d, varient): return class SignatureGeneratorBasic(SignatureGenerator):