[Python-checkins] CVS: python/dist/src/Lib binhex.py,1.18,1.19

Eric S. Raymond esr@users.sourceforge.net
Thu, 08 Feb 2001 21:07:06 -0800


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

Modified Files:
	binhex.py 
Log Message:
String method conversion.


Index: binhex.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/binhex.py,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -r1.18 -r1.19
*** binhex.py	2001/01/20 19:54:20	1.18
--- binhex.py	2001/02/09 05:07:04	1.19
***************
*** 103,107 ****
          fp.close()
          dir, file = os.path.split(name)
!         file = string.replace(file, ':', '-', 1)
          return file, finfo, dsize, 0
  
--- 103,107 ----
          fp.close()
          dir, file = os.path.split(name)
!         file = file.replace(':', '-', 1)
          return file, finfo, dsize, 0