[Python-checkins] CVS: distutils/distutils/command install_data.py,1.7,1.8

Greg Ward python-dev@python.org
Mon, 5 Jun 2000 19:18:16 -0700


Update of /cvsroot/python/distutils/distutils/command
In directory slayer.i.sourceforge.net:/tmp/cvs-serv25303

Modified Files:
	install_data.py 
Log Message:
'get_outputs()' now returns an empty list instead of None.

Index: install_data.py
===================================================================
RCS file: /cvsroot/python/distutils/distutils/command/install_data.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** install_data.py	2000/05/25 02:14:26	1.7
--- install_data.py	2000/06/06 02:18:13	1.8
***************
*** 6,10 ****
  # contributed by Bastian Kleineidam
  
! __revision__ = "$Id: install_data.py,v 1.7 2000/05/25 02:14:26 gward Exp $"
  
  import os
--- 6,10 ----
  # contributed by Bastian Kleineidam
  
! __revision__ = "$Id: install_data.py,v 1.8 2000/06/06 02:18:13 gward Exp $"
  
  import os
***************
*** 57,59 ****
  
      def get_outputs (self):
!         return self.outfiles
--- 57,59 ----
  
      def get_outputs (self):
!         return self.outfiles or []