Skip to content
Snippets Groups Projects
Commit b1937f40 authored by Rolf Niepraschk's avatar Rolf Niepraschk
Browse files

sorting in descending order)

parent 05b8500c
Branches
No related tags found
No related merge requests found
...@@ -22,7 +22,7 @@ def getDirs(root): ...@@ -22,7 +22,7 @@ def getDirs(root):
for d in os.scandir(root): for d in os.scandir(root):
if d.is_dir(): if d.is_dir():
dirs.append(d.name) dirs.append(d.name)
dirs.sort() dirs.sort(reverse=True)
except: except:
pass pass
return dirs return dirs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment