From 7b4f43542a5dec931f73076d891f8509a69f98e8 Mon Sep 17 00:00:00 2001 From: "Shawn O. Pearce" Date: Fri, 12 Jun 2009 09:06:35 -0700 Subject: 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 --- git_config.py | 1 + 1 file changed, 1 insertion(+) (limited to 'git_config.py') diff --git a/git_config.py b/git_config.py index 29d89797..a2a739a4 100644 --- a/git_config.py +++ b/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. -- cgit v1.2.3-54-g00ecf