Mercurial > evolve
changeset 2541:383efcb9ed0f stable
serveronly: also backport the fixes from 5adb8bdb935e
The fixes to the computation of "relevant" markers. Was missing for server only.
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Thu, 01 Jun 2017 03:19:07 +0200 |
parents | 69292318c545 |
children | 3e62042a6bb7 e358c0263e46 |
files | README hgext3rd/evolve/serveronly.py |
diffstat | 2 files changed, 8 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/README Thu Jun 01 02:31:31 2017 +0200 +++ b/README Thu Jun 01 03:19:07 2017 +0200 @@ -121,6 +121,11 @@ Changelog ========= +6.3.1 - in progress +------------------- + + - also backport the "revelant-markers" fix when using "evolve.serveronly" + 6.3.0 -- 2017-05-31 -------------------
--- a/hgext3rd/evolve/serveronly.py Thu Jun 01 02:31:31 2017 +0200 +++ b/hgext3rd/evolve/serveronly.py Thu Jun 01 03:19:07 2017 +0200 @@ -15,6 +15,7 @@ try: from . import ( + compat, exthelper, metadata, obscache, @@ -26,6 +27,7 @@ # extension imported using direct path sys.path.insert(0, os.path.dirname(os.path.dirname(__file__))) from evolve import ( + compat, exthelper, metadata, obscache, @@ -38,6 +40,7 @@ buglink = metadata.buglink eh = exthelper.exthelper() +eh.merge(compat.eh) eh.merge(obscache.eh) eh.merge(obsexchange.eh) uisetup = eh.final_uisetup