Commit cf113963 by Timothée Peignier

Merge pull request #232 from adamcharnock/patch-1

ensure file globing is deterministic
parents 9bcbee07 3a055402
......@@ -15,7 +15,7 @@ def glob(pathname):
The pattern may contain simple shell-style wildcards a la fnmatch.
"""
return list(iglob(pathname))
return sorted(list(iglob(pathname)))
def iglob(pathname):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment