X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/8d036ceb3f0a0e0b52276e8d4afe840d1fcad11b..98ac69f04ccaf3328b05e65d19a24f205825be4f:/src/black/__init__.py diff --git a/src/black/__init__.py b/src/black/__init__.py index 3d0a2d6..930f2cb 100644 --- a/src/black/__init__.py +++ b/src/black/__init__.py @@ -5834,7 +5834,7 @@ def find_project_root(srcs: Iterable[str]) -> Path: if not srcs: return Path("/").resolve() - path_srcs = [Path(src).resolve() for src in srcs] + path_srcs = [Path(Path.cwd(), src).resolve() for src in srcs] # A list of lists of parents for each 'src'. 'src' is included as a # "parent" of itself if it is a directory