[Python-checkins] CVS: python/dist/src/Lib SimpleHTTPServer.py,1.16,1.17

Eric S. Raymond esr@users.sourceforge.net
Fri, 09 Feb 2001 02:26:08 -0800


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

Modified Files:
	SimpleHTTPServer.py 
Log Message:
Correction after translation test.


Index: SimpleHTTPServer.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/SimpleHTTPServer.py,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -r1.16 -r1.17
*** SimpleHTTPServer.py	2001/02/09 10:18:37	1.16
--- SimpleHTTPServer.py	2001/02/09 10:26:06	1.17
***************
*** 131,135 ****
          """
          path = posixpath.normpath(urllib.unquote(path))
!         words = path.splitfields('/')
          words = filter(None, words)
          path = os.getcwd()
--- 131,135 ----
          """
          path = posixpath.normpath(urllib.unquote(path))
!         words = path.split('/')
          words = filter(None, words)
          path = os.getcwd()