##// END OF EJS Templates
context: fix troubled deprecation...
Boris Feld -
r33794:4abf34f4 default
parent child Browse files
Show More
@@ -243,7 +243,7 b' class basectx(object):'
243 243 msg = ("'context.troubled' is deprecated, "
244 244 "use 'context.isunstable'")
245 245 self._repo.ui.deprecwarn(msg, '4.4')
246 return self.unstable()
246 return self.isunstable()
247 247
248 248 def isunstable(self):
249 249 """True if the changeset is either unstable, bumped or divergent"""
General Comments 0
You need to be logged in to leave comments. Login now