Browse Source

remove unneeded sort from scandir_generic()

Alexander 'Leo' Bergolth 7 years ago
parent
commit
b5fbeed6ed
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/borg/helpers.py

+ 1 - 1
src/borg/helpers.py

@@ -2086,7 +2086,7 @@ class GenericDirEntry:
 
 def scandir_generic(path='.'):
     """Like os.listdir(), but yield DirEntry objects instead of returning a list of names."""
-    for name in sorted(os.listdir(path)):
+    for name in os.listdir(path):
         yield GenericDirEntry(path, name)