Skip to content

Commit

Permalink
Merge pull request jazzband#232 from adamcharnock/patch-1
Browse files Browse the repository at this point in the history
ensure file globing is deterministic
  • Loading branch information
cyberdelia committed Jun 25, 2013
2 parents 9bcbee0 + 3a05540 commit cf11396
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipeline/glob.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit cf11396

Please sign in to comment.