Parcourir la source

Fix: translate_path() should return a string

default_compile_flags
vector-of-bool il y a 4 ans
Parent
révision
ba26e411df
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      tests/http.py

+ 1
- 1
tests/http.py Voir le fichier

@@ -25,7 +25,7 @@ class DirectoryServingHTTPRequestHandler(SimpleHTTPRequestHandler):
# Convert the given URL path to a path relative to the directory we are serving
abspath = Path(super().translate_path(path))
relpath = abspath.relative_to(Path.cwd())
return self.dir / relpath
return str(self.dir / relpath)


class ServerInfo(NamedTuple):

Chargement…
Annuler
Enregistrer