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

Module matrix case-insensitive sorting

parent b82eb165
No related branches found
No related tags found
4 merge requests!368Update prace.md to document the change from qprace to qprod as the default...,!367Update prace.md to document the change from qprace to qprod as the default...,!366Update prace.md to document the change from qprace to qprod as the default...,!323extended-acls-storage-section
Pipeline #
...@@ -56,7 +56,7 @@ for m,i in sorted(counts.items()): ...@@ -56,7 +56,7 @@ for m,i in sorted(counts.items()):
#print software.items() #print software.items()
for m in sorted(software.items()): for m in sorted(software.items(), key=lambda i: i[0].lower()):
software = m[0] software = m[0]
versions = '' versions = ''
clusters = '' clusters = ''
......
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