remove unneeded sort from scandir_generic()

This commit is contained in:
Alexander 'Leo' Bergolth 2018-01-19 17:38:15 +01:00
parent 37a475e3ac
commit b5fbeed6ed
1 changed files with 1 additions and 1 deletions

View File

@ -2086,7 +2086,7 @@ class GenericDirEntry:
def scandir_generic(path='.'): def scandir_generic(path='.'):
"""Like os.listdir(), but yield DirEntry objects instead of returning a list of names.""" """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) yield GenericDirEntry(path, name)