diff mercurial/subrepo.py @ 12506:e7d45e41338c

subrepos: add missing self argument to abstractsubrepo.checknested
author Brodie Rao <brodie@bitheap.org>
date Sun, 26 Sep 2010 16:11:04 -0500
parents b4711585a455
children 18b5b6392fcf
line wrap: on
line diff
--- 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