##// 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 msg = ("'context.troubled' is deprecated, "
243 msg = ("'context.troubled' is deprecated, "
244 "use 'context.isunstable'")
244 "use 'context.isunstable'")
245 self._repo.ui.deprecwarn(msg, '4.4')
245 self._repo.ui.deprecwarn(msg, '4.4')
246 return self.unstable()
246 return self.isunstable()
247
247
248 def isunstable(self):
248 def isunstable(self):
249 """True if the changeset is either unstable, bumped or divergent"""
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