mirror of
https://github.com/Dev-Wiki/git-repo.git
synced 2025-05-21 22:57:29 +08:00
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>
This commit is contained in:
parent
9fb29ce123
commit
7b4f43542a
@ -414,6 +414,7 @@ def _preconnect(url):
|
|||||||
host = m.group(1)
|
host = m.group(1)
|
||||||
return _open_ssh(host, 22)
|
return _open_ssh(host, 22)
|
||||||
|
|
||||||
|
return False
|
||||||
|
|
||||||
class Remote(object):
|
class Remote(object):
|
||||||
"""Configuration options related to a remote.
|
"""Configuration options related to a remote.
|
||||||
|
Loading…
Reference in New Issue
Block a user