diff options
| author | Andrew M. Kuchling <amk@amk.ca> | 2001-03-22 15:32:23 (GMT) |
|---|---|---|
| committer | Andrew M. Kuchling <amk@amk.ca> | 2001-03-22 15:32:23 (GMT) |
| commit | ffb963c7f699c9b6ab0debc1825a55ec8f98556f (patch) | |
| tree | 4bf7860574d5e201825336bb517123119f14e889 | |
| parent | a0ea7c1b9f42e6cc3c3b2cde72a697bde0a09dd1 (diff) | |
| download | cpython-ffb963c7f699c9b6ab0debc1825a55ec8f98556f.zip cpython-ffb963c7f699c9b6ab0debc1825a55ec8f98556f.tar.gz cpython-ffb963c7f699c9b6ab0debc1825a55ec8f98556f.tar.bz2 | |
Use the get_contact*() accessors instead of get_maintainer*()
| -rw-r--r-- | Lib/distutils/dist.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/dist.py b/Lib/distutils/dist.py index 2346696..7ef3a42 100644 --- a/Lib/distutils/dist.py +++ b/Lib/distutils/dist.py @@ -992,8 +992,8 @@ class DistributionMetadata: pkg_info.write('Version: %s\n' % self.get_version() ) pkg_info.write('Summary: %s\n' % self.get_description() ) pkg_info.write('Home-page: %s\n' % self.get_url() ) - pkg_info.write('Author: %s\n' % self.get_maintainer() ) - pkg_info.write('Author-email: %s\n' % self.get_maintainer_email() ) + pkg_info.write('Author: %s\n' % self.get_contact() ) + pkg_info.write('Author-email: %s\n' % self.get_contact_email() ) pkg_info.write('License: %s\n' % self.get_licence() ) long_desc = rfc822_escape( self.get_long_description() ) |
