[Python-checkins] CVS: python/dist/src/Lib/distutils/command install_data.py,1.17,1.18

A.M. Kuchling akuchling@users.sourceforge.net
Mon, 05 Feb 2001 09:43:13 -0800


Update of /cvsroot/python/python/dist/src/Lib/distutils/command
In directory usw-pr-cvs1:/tmp/cvs-serv14383

Modified Files:
	install_data.py 
Log Message:
Patch #103587: Fix typo that broke the install_data command; caught by
   Uche Ogbuji


Index: install_data.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/install_data.py,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -r1.17 -r1.18
*** install_data.py	2001/01/28 12:22:14	1.17
--- install_data.py	2001/02/05 17:43:11	1.18
***************
*** 65,69 ****
                  self.mkpath(dir)
                  for data in f[1]:
!                     data = convert_path(f[1])
                      (out, _) = self.copy_file(data, dir)
                      self.outfiles.append(out)
--- 65,69 ----
                  self.mkpath(dir)
                  for data in f[1]:
!                     data = convert_path(data)
                      (out, _) = self.copy_file(data, dir)
                      self.outfiles.append(out)