comparison 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
comparison
equal deleted inserted replaced
12505:b37d5ecc2227 12506:e7d45e41338c
218 """returns true if the dirstate of the subrepo does not match 218 """returns true if the dirstate of the subrepo does not match
219 current stored state 219 current stored state
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
227 def commit(self, text, user, date): 227 def commit(self, text, user, date):
228 """commit the current changes to the subrepo with the given 228 """commit the current changes to the subrepo with the given