Use the get_contact*() accessors instead of get_maintainer*()

This commit is contained in:
Andrew M. Kuchling 2001-03-22 15:32:23 +00:00
parent a0ea7c1b9f
commit ffb963c7f6
1 changed files with 2 additions and 2 deletions

View File

@ -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() )