From: Holger Hans Peter Freyther Date: Thu, 18 Mar 2010 12:51:10 +0000 (+0100) Subject: oe_audit.py: Document a bug which was uncovered on chat X-Git-Tag: Release-2010-05/1~340^2~29 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d85542eb64ec28aae9b70694b4f8b7680b42c0d;p=openembedded.git oe_audit.py: Document a bug which was uncovered on chat --- diff --git a/contrib/qa/oe_audit.py b/contrib/qa/oe_audit.py index 6a820cd618..7e04480626 100755 --- a/contrib/qa/oe_audit.py +++ b/contrib/qa/oe_audit.py @@ -169,7 +169,7 @@ def create_infos(line): break if is_not_in_oe(name): - print "Not in oe %s" % name + #print "Not in oe %s" % name return [] link = split[1] @@ -213,6 +213,7 @@ def strip_bsd_version(bsd_version): """ FreeBSD is adding ,1 for revisions.. remove that """ + # FIXME return a tuple with a revision... split = bsd_version.rsplit(',', 1) split = split[0] split = split.rsplit('_', 1)