summaryrefslogtreecommitdiffstats
path: root/bin/bitdoc
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2006-03-18 12:38:53 +0000
committerHolger Hans Peter Freyther <zecke@selfish.org>2006-03-18 12:38:53 +0000
commitf0a0475b4f23bcabdb8fdceed237f6b9eba50bf9 (patch)
tree8e40fb19c0cd6fff396ed0c6a29d4756c2d2bf0c /bin/bitdoc
parent34b8779c8fbaddc8903f8c8f3f208492fca6659f (diff)
downloadbitbake-contrib-f0a0475b4f23bcabdb8fdceed237f6b9eba50bf9.tar.gz
bitbake/bin/bitdoc:
Make it work with python2.3 and python2.4
Diffstat (limited to 'bin/bitdoc')
-rwxr-xr-xbin/bitdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bitdoc b/bin/bitdoc
index 399d3d2ea..84d2ee23c 100755
--- a/bin/bitdoc
+++ b/bin/bitdoc
@@ -222,7 +222,7 @@ class HTMLFormatter:
description += "<h2 Description of Grozp %s</h2>" % gr
description += _description
- items.sort(cmp=lambda x,y:cmp(x.name(),y.name()))
+ items.sort(lambda x,y:cmp(x.name(),y.name()))
for group in items:
groups += """<a href="key%s.html">%s</a><br>""" % (group.name(), group.name())