Re: [PATCH 16/47] remote-hg: load all extensions

2013-05-14 Thread Eric Sunshine
On Tue, May 14, 2013 at 12:36 AM, Felipe Contreras
felipe.contre...@gmail.com wrote:
 The user might have then configured differently, plus, all of them will

Did you mean s/then/them/ ?

 be loaded anyway later on.

 Signed-off-by: Felipe Contreras felipe.contre...@gmail.com
--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH 16/47] remote-hg: load all extensions

2013-05-13 Thread Felipe Contreras
The user might have then configured differently, plus, all of them will
be loaded anyway later on.

Signed-off-by: Felipe Contreras felipe.contre...@gmail.com
---
 contrib/remote-helpers/git-remote-hg | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/contrib/remote-helpers/git-remote-hg 
b/contrib/remote-helpers/git-remote-hg
index 96bed8d..60e875d 100755
--- a/contrib/remote-helpers/git-remote-hg
+++ b/contrib/remote-helpers/git-remote-hg
@@ -339,11 +339,7 @@ def get_repo(url, alias):
 if get_config_bool('remote-hg.insecure'):
 myui.setconfig('web', 'cacerts', '')
 
-try:
-mod = extensions.load(myui, 'hgext.schemes', None)
-mod.extsetup(myui)
-except ImportError:
-pass
+extensions.loadall(myui)
 
 if hg.islocal(url):
 repo = hg.repository(myui, url)
-- 
1.8.3.rc1.579.g184e698

--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html