##// END OF EJS Templates
context: add missing b prefix...
Augie Fackler -
r38774:71d6886d stable
parent child Browse files
Show More
@@ -591,7 +591,7 b' class changectx(basectx):'
591
591
592 def descendant(self, other):
592 def descendant(self, other):
593 msg = (b'ctx.descendant(other) is deprecated, '
593 msg = (b'ctx.descendant(other) is deprecated, '
594 'use ctx.isancestorof(other)')
594 b'use ctx.isancestorof(other)')
595 self._repo.ui.deprecwarn(msg, b'4.7')
595 self._repo.ui.deprecwarn(msg, b'4.7')
596 return self.isancestorof(other)
596 return self.isancestorof(other)
597
597
General Comments 0
You need to be logged in to leave comments. Login now