mercurial/subrepo.py
changeset 12506 e7d45e41338c
parent 12503 b4711585a455
child 12752 18b5b6392fcf
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