Skip to content

Commit 58f7710

Browse files
committed
Revert "debug printing"
This reverts commit 0df0818.
1 parent 0df0818 commit 58f7710

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

git/util.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -475,8 +475,6 @@ def _is_cygwin_git(git_executable: str) -> bool:
475475
process = subprocess.Popen([strings_cmd, git_cmd], stdout=subprocess.PIPE, text=True)
476476
strings_output, _ = process.communicate()
477477
is_cygwin = any(x for x in strings_output if "cygwin" in x.lower())
478-
if not is_cygwin:
479-
_logger.debug(f"is not cygwin: {strings_output}")
480478
except Exception as ex:
481479
_logger.debug("Failed checking if running in CYGWIN due to: %r", ex)
482480
_is_cygwin_cache[git_executable] = is_cygwin

0 commit comments

Comments
 (0)