From: Saul Wold Date: Thu, 16 Dec 2010 01:59:22 +0000 (-0800) Subject: distrodata: fix message X-Git-Tag: 2011-1~3422 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=3faa3c7f793fa15900e7b1aaca6cb69014d736a9;p=openembedded-core.git distrodata: fix message Signed-off-by: Saul Wold --- diff --git a/meta/classes/distrodata.bbclass b/meta/classes/distrodata.bbclass index bb93336ad3..0378790f70 100644 --- a/meta/classes/distrodata.bbclass +++ b/meta/classes/distrodata.bbclass @@ -610,7 +610,7 @@ python do_checkpkg() { maintainer = bb.data.getVar('RECIPE_MAINTAINER', d, True) lf = bb.utils.lockfile(logfile + ".lock") f = open(logfile, "a") - f.write("%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\n" % \ + f.write("%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\n" % \ (pname, maintainer, pproto, pcurver, pmver, pupver, pmstatus, pstatus)) f.close() bb.utils.unlockfile(lf)