Correction after translation test.

This commit is contained in:
Eric S. Raymond 2001-02-09 10:26:06 +00:00
parent 0c03cc203f
commit 304b6a3225
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ class SimpleHTTPRequestHandler(BaseHTTPServer.BaseHTTPRequestHandler):
"""
path = posixpath.normpath(urllib.unquote(path))
words = path.splitfields('/')
words = path.split('/')
words = filter(None, words)
path = os.getcwd()
for word in words: