Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit b1289ee

Browse filesBrowse files
committed
it's is_file(), not isfile()
1 parent 22d6284 commit b1289ee
Copy full SHA for b1289ee

File tree

1 file changed

+2
-1
lines changed
Filter options

1 file changed

+2
-1
lines changed

‎git/util.py

Copy file name to clipboardExpand all lines: git/util.py
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ def _is_cygwin_git(git_executable: str) -> bool:
465465
# Just a name given, not a real path.
466466
uname_cmd = osp.join(git_dir, "uname")
467467

468-
if not (pathlib.Path(uname_cmd).isfile() and os.access(uname_cmd, os.X_OK)):
468+
if not (pathlib.Path(uname_cmd).is_file() and os.access(uname_cmd, os.X_OK)):
469469
_logger.debug(f"Failed checking if running in CYGWIN: {uname_cmd} is not an executable")
470470
_is_cygwin_cache[git_executable] = is_cygwin
471471
return is_cygwin
@@ -490,6 +490,7 @@ def is_cygwin_git(git_executable: PathLike) -> bool: ...
490490

491491

492492
def is_cygwin_git(git_executable: Union[None, PathLike]) -> bool:
493+
_logger.debug(f"{sys.platform=}, {git_executable=}")
493494
if sys.platform != "cygwin":
494495
return False
495496
elif git_executable is None:

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.