aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/egg_info.py
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-08-13 23:04:08 +0000
committerPJ Eby <distutils-sig@python.org>2005-08-13 23:04:08 +0000
commit53cf2db1ed9a75fc4093cb81277510865e8a6db9 (patch)
tree02731d6a0687dd6d9962188e7f2024023fc98327 /setuptools/command/egg_info.py
parentb8878fdb9dc2bfe8733a852547f15ec167476752 (diff)
downloadexternal_python_setuptools-53cf2db1ed9a75fc4093cb81277510865e8a6db9.tar.gz
external_python_setuptools-53cf2db1ed9a75fc4093cb81277510865e8a6db9.tar.bz2
external_python_setuptools-53cf2db1ed9a75fc4093cb81277510865e8a6db9.zip
Added docs for main EntryPoint APIs, and cleaned up the API itself a bit.
Also fixed a few bugs. --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041192
Diffstat (limited to 'setuptools/command/egg_info.py')
-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 ae3c762b..c05601a4 100755
--- a/setuptools/command/egg_info.py
+++ b/setuptools/command/egg_info.py
@@ -219,7 +219,7 @@ def write_entries(cmd, basename, filename):
data = []
for section, contents in ep.items():
if not isinstance(contents,basestring):
- contents = EntryPoint.parse_list(section, contents)
+ contents = EntryPoint.parse_group(section, contents)
contents = '\n'.join(map(str,contents.values()))
data.append('[%s]\n%s\n\n' % (section,contents))
data = ''.join(data)