diff options
-rw-r--r-- | git_config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git_config.py b/git_config.py index 53b52c85..45264611 100644 --- a/git_config.py +++ b/git_config.py | |||
@@ -346,7 +346,7 @@ def _open_ssh(host, port): | |||
346 | 346 | ||
347 | if not _ssh_master \ | 347 | if not _ssh_master \ |
348 | or 'GIT_SSH' in os.environ \ | 348 | or 'GIT_SSH' in os.environ \ |
349 | or sys.platform == 'win32': | 349 | or sys.platform in ('win32', 'cygwin'): |
350 | # failed earlier, or cygwin ssh can't do this | 350 | # failed earlier, or cygwin ssh can't do this |
351 | # | 351 | # |
352 | return False | 352 | return False |