subrepos: add missing self argument to abstractsubrepo.checknested
authorBrodie Rao <brodie@bitheap.org>
Sun, 26 Sep 2010 16:11:04 -0500
changeset 12506 e7d45e41338c
parent 12505 b37d5ecc2227
child 12508 7e508cf16438
subrepos: add missing self argument to abstractsubrepo.checknested
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