Mercurial > public > mercurial-scm > hg-stable
diff mercurial/commands.py @ 34863:b1e3f609bf45
config: invert evolution-related configuration aliases
We want to split the evolution-related configuration and back-out the renaming
from evolution.* to stabilization.*.
First invert the configuration and aliases, so next changesets will be
cleaner.
Differential Revision: https://phab.mercurial-scm.org/D1146
author | Boris Feld <boris.feld@octobus.net> |
---|---|
date | Mon, 16 Oct 2017 17:14:32 +0200 |
parents | 84c6b9384d6a |
children | 5c7dbb730179 |
line wrap: on
line diff
--- a/mercurial/commands.py Mon Oct 16 14:53:57 2017 -0400 +++ b/mercurial/commands.py Mon Oct 16 17:14:32 2017 +0200 @@ -1239,7 +1239,7 @@ contentopts = {'cg.version': cgversion} - if repo.ui.configbool('experimental', 'stabilization.bundle-obsmarker'): + if repo.ui.configbool('experimental', 'evolution.bundle-obsmarker'): contentopts['obsolescence'] = True if repo.ui.configbool('experimental', 'bundle-phases'): contentopts['phases'] = True