# HG changeset patch # User Brodie Rao # Date 2010-09-26 21:11:04 # Node ID e7d45e41338c234785e38c02e2ee47432376a352 # Parent b37d5ecc22276cb17faac0e9a6a2d1c344a8fb01 subrepos: add missing self argument to abstractsubrepo.checknested diff --git a/mercurial/subrepo.py b/mercurial/subrepo.py --- a/mercurial/subrepo.py +++ b/mercurial/subrepo.py @@ -220,7 +220,7 @@ class abstractsubrepo(object): """ raise NotImplementedError - def checknested(path): + def checknested(self, path): """check if path is a subrepository within this repository""" return False