Node.listdir outputs are already sorted, do not sort it again in Node.ant_glob

This commit is contained in:
Thomas Nagy 2019-04-23 07:13:02 +02:00
parent 8a32540045
commit 4ed9af0ee9
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
1 changed files with 0 additions and 1 deletions

View File

@ -595,7 +595,6 @@ class Node(object):
:rtype: iterator
"""
dircont = self.listdir()
dircont.sort()
try:
lst = set(self.children.keys())