Fix bottom navigation

This commit is contained in:
Peter Badida 2016-05-08 00:36:52 +02:00
parent d29f2ec1f6
commit 60f1a34597
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,7 @@ for package in packages:
# search modules
m = list(modules.keys())
m.sort(key=lambda x: extract_summary_line(sys.modules[x].__doc__))
m.sort(key=lambda x: extract_summary_line(sys.modules[x].__doc__).upper())
for module in m:
packagemodule = module.rsplit('.', 1)[0]
if packagemodule != package: