autotest: sort libraries by name

This commit is contained in:
Andrew Tridgell 2017-02-07 10:37:15 +11:00
parent 2b9478f430
commit 496ed18530
1 changed files with 4 additions and 1 deletions

View File

@ -173,8 +173,11 @@ for library in libraries:
debug("Processed %u documented parameters" % len(library.params))
libraries = alllibs
# sort libraries by name
alllibs = sorted(alllibs, key=lambda x : x.name)
libraries = alllibs
def is_number(numberString):
try:
float(numberString)