mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Use the get_contact*() accessors instead of get_maintainer*()
This commit is contained in:
parent
a0ea7c1b9f
commit
ffb963c7f6
1 changed files with 2 additions and 2 deletions
|
|
@ -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() )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue