Skip to content
Snippets Groups Projects
Commit a35b5394 authored by David Hrbáč's avatar David Hrbáč
Browse files

Sort insensitive

parent a7ba9cf8
No related branches found
No related tags found
1 merge request!2Resolve "Nesprávné třídění modulů"
......@@ -49,8 +49,8 @@ if __name__ == "__main__":
SUBDIRS.remove("/apps/modules/omics")
SUBDIRS.remove("/apps/modules/prace")
for subdir in sorted(SUBDIRS):
available_software = get_software_list(subdir, key=lambda s: s.lower())
for subdir in sorted(SUBDIRS, key=lambda s: s.lower()):
available_software = get_software_list(subdir)
print "\n## %s\n" % os.path.basename(subdir).title()
print "| Module | Description |"
print "| ------ | ----------- |"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment