2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-22 01:46:15 +01:00

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

View File

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