Explorar o código

Add missing return False to preconnect

Noticed by users on repo-discuss, we were missing a return False
here to signal that SSH control master was not used to setup the
network connection.

Signed-off-by: Shawn O. Pearce <sop@google.com>
Shawn O. Pearce %!s(int64=16) %!d(string=hai) anos
pai
achega
7b4f43542a
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      git_config.py

+ 1 - 0
git_config.py

@@ -414,6 +414,7 @@ def _preconnect(url):
     host = m.group(1)
     return _open_ssh(host, 22)
 
+  return False
 
 class Remote(object):
   """Configuration options related to a remote.