소스 검색

Fix: translate_path() should return a string

default_compile_flags
vector-of-bool 4 년 전
부모
커밋
ba26e411df
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      tests/http.py

+ 1
- 1
tests/http.py 파일 보기

@@ -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):

Loading…
취소
저장