commit | 7b4f43542a5dec931f73076d891f8509a69f98e8 | [log] [tgz] |
---|---|---|
author | Shawn O. Pearce <sop@google.com> | Fri Jun 12 09:06:35 2009 -0700 |
committer | Shawn O. Pearce <sop@google.com> | Fri Jun 12 09:08:34 2009 -0700 |
tree | 4eb3da5243a341a3c77969f081bbf87cb8bec99d | |
parent | 9fb29ce123ad26bf1497144a40e337aff8c51ecb [diff] |
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>
diff --git a/git_config.py b/git_config.py index 29d8979..a2a739a 100644 --- a/git_config.py +++ b/git_config.py
@@ -414,6 +414,7 @@ host = m.group(1) return _open_ssh(host, 22) + return False class Remote(object): """Configuration options related to a remote.