##// END OF EJS Templates
workingctx: overload bookmarks() to return parents' bookmarks...
Kevin Bullock -
r13476:b85a09f3 stable
parent child Browse files
Show More
@@ -730,6 +730,12 b' class workingctx(changectx):'
730 730 t.extend(p.tags())
731 731 return t
732 732
733 def bookmarks(self):
734 b = []
735 for p in self.parents():
736 b.extend(p.bookmarks())
737 return b
738
733 739 def children(self):
734 740 return []
735 741
General Comments 0
You need to be logged in to leave comments. Login now