# HG changeset patch # User Matt Harbison # Date 1517633637 18000 # Node ID 6289482f6ab596f518741bb58b3b34226ce298df # Parent 78f33dedadd0e150f382d88d6730a52afe97c7dd templatekw: drop the deprecated '{troubles}' keyword diff -r 78f33dedadd0 -r 6289482f6ab5 mercurial/templatekw.py --- a/mercurial/templatekw.py Fri Feb 02 23:52:19 2018 -0500 +++ b/mercurial/templatekw.py Fri Feb 02 23:53:57 2018 -0500 @@ -893,17 +893,6 @@ """Integer. The width of the current terminal.""" return repo.ui.termwidth() -@templatekeyword('troubles') -def showtroubles(repo, **args): - """List of strings. Evolution troubles affecting the changeset. - (DEPRECATED) - """ - msg = ("'troubles' is deprecated, " - "use 'instabilities'") - repo.ui.deprecwarn(msg, '4.4') - - return showinstabilities(repo=repo, **args) - @templatekeyword('instabilities') def showinstabilities(**args): """List of strings. Evolution instabilities affecting the changeset.