# HG changeset patch # User Brodie Rao # Date 1285535464 18000 # Node ID e7d45e41338c234785e38c02e2ee47432376a352 # Parent b37d5ecc22276cb17faac0e9a6a2d1c344a8fb01 subrepos: add missing self argument to abstractsubrepo.checknested diff -r b37d5ecc2227 -r e7d45e41338c mercurial/subrepo.py --- a/mercurial/subrepo.py Sun Sep 26 16:01:13 2010 -0500 +++ b/mercurial/subrepo.py Sun Sep 26 16:11:04 2010 -0500 @@ -220,7 +220,7 @@ """ raise NotImplementedError - def checknested(path): + def checknested(self, path): """check if path is a subrepository within this repository""" return False