Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/cmdutil.py @ 39936:0d703063d0c8
formatter: remove experimental marker from -T option
I think it's good enough to stabilize the feature, at least for the core
and non-experimental commands.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Sun, 30 Sep 2018 15:53:36 +0900 |
parents | 24e493ec2229 |
children | e2697acd9381 |
comparison
equal
deleted
inserted
replaced
39935:66df1059b7c0 | 39936:0d703063d0c8 |
---|---|
95 _('record the specified date as commit date'), _('DATE')), | 95 _('record the specified date as commit date'), _('DATE')), |
96 ('u', 'user', '', | 96 ('u', 'user', '', |
97 _('record the specified user as committer'), _('USER')), | 97 _('record the specified user as committer'), _('USER')), |
98 ] | 98 ] |
99 | 99 |
100 # hidden for now | |
101 formatteropts = [ | 100 formatteropts = [ |
102 ('T', 'template', '', | 101 ('T', 'template', '', |
103 _('display with template (EXPERIMENTAL)'), _('TEMPLATE')), | 102 _('display with template'), _('TEMPLATE')), |
104 ] | 103 ] |
105 | 104 |
106 templateopts = [ | 105 templateopts = [ |
107 ('', 'style', '', | 106 ('', 'style', '', |
108 _('display using template map file (DEPRECATED)'), _('STYLE')), | 107 _('display using template map file (DEPRECATED)'), _('STYLE')), |