summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-09-26 11:11:23 -0400
committerJason R. Coombs <jaraco@jaraco.com>2014-09-26 11:11:23 -0400
commit70f113d6169c0874fb00d59a752a033ccafb042b (patch)
tree03556bb5b31ad58fc3713486d911cbf82da303b9 /setuptools/command
parentfc200c9d8094685fa91ade69b9c1126c91bbfc37 (diff)
parent51a264643308ae8da841e8e2309076d821f03359 (diff)
downloadpython-setuptools-bitbucket-70f113d6169c0874fb00d59a752a033ccafb042b.tar.gz
Merge Pull Request #78 correcting regression in Pull Request #76.
Diffstat (limited to 'setuptools/command')
-rwxr-xr-xsetuptools/command/egg_info.py2
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):