diff options
author | Holger Hans Peter Freyther <zecke@selfish.org> | 2010-03-18 13:51:10 +0100 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2010-03-18 13:57:47 +0100 |
commit | 1d85542eb64ec28aae9b70694b4f8b7680b42c0d (patch) | |
tree | b32e9f0e1fd8834162fc9b0820ce3bb90eb5ac7a /contrib | |
parent | 75d85f77f336fb67b752f227f24351131b329924 (diff) |
oe_audit.py: Document a bug which was uncovered on chat
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/qa/oe_audit.py | 3 |
1 files changed, 2 insertions, 1 deletions
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) |