[Python-checkins] CVS: distutils/distutils dist.py,1.45,1.46

A.M. Kuchling akuchling@users.sourceforge.net
Thu, 22 Mar 2001 07:32:26 -0800


Update of /cvsroot/python/distutils/distutils
In directory usw-pr-cvs1:/tmp/cvs-serv26837

Modified Files:
	dist.py 
Log Message:
Use the get_contact*() accessors instead of get_maintainer*()


Index: dist.py
===================================================================
RCS file: /cvsroot/python/distutils/distutils/dist.py,v
retrieving revision 1.45
retrieving revision 1.46
diff -C2 -r1.45 -r1.46
*** dist.py	2001/03/22 03:06:52	1.45
--- dist.py	2001/03/22 15:32:23	1.46
***************
*** 993,998 ****
          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('License: %s\n' % self.get_licence() )
  
--- 993,998 ----
          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_contact() )
!         pkg_info.write('Author-email: %s\n' % self.get_contact_email() )
          pkg_info.write('License: %s\n' % self.get_licence() )