diff options
author | Hugues Lerebours <h.lerebours@criteo.com> | 2014-08-18 14:11:34 +0200 |
---|---|---|
committer | Hugues Lerebours <h.lerebours@criteo.com> | 2014-08-18 14:11:34 +0200 |
commit | 51a264643308ae8da841e8e2309076d821f03359 (patch) | |
tree | e5fc4282e8983679098b5a00bee411ce1a59eff7 /setuptools/command | |
parent | 4ecf0567147a3b594d11432ee84a634ee754c9c2 (diff) | |
download | python-setuptools-bitbucket-51a264643308ae8da841e8e2309076d821f03359.tar.gz |
[Fix/Typo] Fix missing parenthesis in egg_info.py
Syntax error introduced in be37eff86c761a399c1ec98b0e5eeed9a90c9cd7
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 1ef723da..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(sorted(pkgs) + '\n') + cmd.write_file("top-level names", filename, '\n'.join(sorted(pkgs)) + '\n') def overwrite_arg(cmd, basename, filename): |