mirror of https://github.com/python/cpython
Patch inspired by Just van Rossum: on the Mac, in savefilename(), make
the path to save a relative path by prefixing it with os.sep (':'). Also fix an indent inconsistency in the same function.
This commit is contained in:
parent
c009d198db
commit
f3335e193b
|
@ -95,9 +95,11 @@ class Sucker(webchecker.Checker):
|
|||
host, port = urllib.splitnport(host)
|
||||
host = string.lower(host)
|
||||
if not path or path[-1] == "/":
|
||||
path = path + "index.html"
|
||||
path = path + "index.html"
|
||||
if os.sep != "/":
|
||||
path = string.join(string.split(path, "/"), os.sep)
|
||||
if os.name == "mac":
|
||||
path = os.sep + path
|
||||
path = os.path.join(host, path)
|
||||
return path
|
||||
|
||||
|
|
Loading…
Reference in New Issue