diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-09-26 11:11:23 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-09-26 11:11:23 -0400 |
commit | 70f113d6169c0874fb00d59a752a033ccafb042b (patch) | |
tree | 03556bb5b31ad58fc3713486d911cbf82da303b9 /setuptools/command | |
parent | fc200c9d8094685fa91ade69b9c1126c91bbfc37 (diff) | |
parent | 51a264643308ae8da841e8e2309076d821f03359 (diff) | |
download | python-setuptools-bitbucket-70f113d6169c0874fb00d59a752a033ccafb042b.tar.gz |
Merge Pull Request #78 correcting regression in Pull Request #76.
Diffstat (limited to 'setuptools/command')
-rwxr-xr-x | setuptools/command/egg_info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py index 72493d0b..06764a17 100755 --- a/setuptools/command/egg_info.py +++ b/setuptools/command/egg_info.py @@ -389,7 +389,7 @@ def write_toplevel_names(cmd, basename, filename): for k in cmd.distribution.iter_distribution_names() ] ) - cmd.write_file("top-level names", filename, '\n'.join(pkgs) + '\n') + cmd.write_file("top-level names", filename, '\n'.join(sorted(pkgs)) + '\n') def overwrite_arg(cmd, basename, filename): |