##// END OF EJS Templates
commitablectx: move children from workingctx
Sean Farley -
r19694:ba4c01c3 default
parent child Browse files
Show More
@@ -1015,6 +1015,9 b' class commitablectx(basectx):'
1015 def hidden(self):
1015 def hidden(self):
1016 return False
1016 return False
1017
1017
1018 def children(self):
1019 return []
1020
1018 class workingctx(commitablectx):
1021 class workingctx(commitablectx):
1019 """A workingctx object makes access to data related to
1022 """A workingctx object makes access to data related to
1020 the current working directory convenient.
1023 the current working directory convenient.
@@ -1041,9 +1044,6 b' class workingctx(commitablectx):'
1041 p = p[:-1]
1044 p = p[:-1]
1042 return [changectx(self._repo, x) for x in p]
1045 return [changectx(self._repo, x) for x in p]
1043
1046
1044 def children(self):
1045 return []
1046
1047 def flags(self, path):
1047 def flags(self, path):
1048 if '_manifest' in self.__dict__:
1048 if '_manifest' in self.__dict__:
1049 try:
1049 try:
General Comments 0
You need to be logged in to leave comments. Login now