eobuildall: build modules in alphabetical order

This commit is contained in:
Frédéric Péters 2015-08-19 19:03:02 +02:00
parent caf4fc3187
commit 7a48d3f29b
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ if __name__ == '__main__':
pass
results = {}
for module in get_modules():
for module in sorted(get_modules()):
blacklisted = False
for pattern in blacklist:
if fnmatch.fnmatch(module, pattern):