Commit ffb963c7 authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

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

parent a0ea7c1b
......@@ -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() )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment