[BUG] extension load weirdness with remote hg

Matt Mackall mpm at selenic.com
Fri Sep 30 18:26:41 CDT 2005


On Sat, Oct 01, 2005 at 01:06:37AM +0200, Benoit Boissinot wrote:
> i you put the following in your .hgrc:
> 
> [extensions]
> empty=/home/tonfa/dev/hg-bisect/contrib/empty.py
> 
> with empty.py containing only 'pass'

You appear to be running an old version at the remote end. As the
remote end is localhost, perhaps you've got a path issue. At any rate,
it's somehow finding an old copy.

> line 2071, in dispatch
> remote:     for t in x.cmdtable:

Tip has:
        cmdtable = getattr(x, 'cmdtable', {})
        for t in cmdtable:

> line 2134, in dispatch
> remote:     x.reposetup(u, repo)

Tip has:
                    if hasattr(x, 'reposetup'): x.reposetup(u, repo)

-- 
Mathematics is the supreme nostalgia of our time.


More information about the Mercurial mailing list