Browse Source

Merge pull request #3565 from leo-b/1.1-maint-scandir2

remove unneeded sort from scandir_generic()
TW 7 years ago
parent
commit
3dd8d4097a
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)