##// END OF EJS Templates
subrepos: add missing self argument to abstractsubrepo.checknested
Brodie Rao -
r12506:e7d45e41 default
parent child Browse files
Show More
@@ -220,7 +220,7 b' class abstractsubrepo(object):'
220 """
220 """
221 raise NotImplementedError
221 raise NotImplementedError
222
222
223 def checknested(path):
223 def checknested(self, path):
224 """check if path is a subrepository within this repository"""
224 """check if path is a subrepository within this repository"""
225 return False
225 return False
226
226
General Comments 0
You need to be logged in to leave comments. Login now