##// END OF EJS Templates
context: clarify deprecation warning message...
Martin von Zweigbergk -
r37747:6e137da5 default
parent child Browse files
Show More
@@ -398,8 +398,9 b' def changectxdeprecwarn(repo):'
398 # user and the revset may be too costly), use scmutil.revsymbol(repo, x)
398 # user and the revset may be too costly), use scmutil.revsymbol(repo, x)
399 # * If "x" can be a mix of the above, you'll have to figure it out
399 # * If "x" can be a mix of the above, you'll have to figure it out
400 # yourself
400 # yourself
401 repo.ui.deprecwarn("changectx.__init__ is getting more limited, see source "
401 repo.ui.deprecwarn("changectx.__init__ is getting more limited, see "
402 "for details", "4.6", stacklevel=4)
402 "context.changectxdeprecwarn() for details", "4.6",
403 stacklevel=4)
403
404
404 class changectx(basectx):
405 class changectx(basectx):
405 """A changecontext object makes access to data related to a particular
406 """A changecontext object makes access to data related to a particular
General Comments 0
You need to be logged in to leave comments. Login now